(1) O que já sabemos:
Como você já declarou, o QBF com alternações de quantificadores é difícil para todos os níveis da hierarquia polinomial.log(n)
(2) Penso que também podemos provar o seguinte:
O problema é -Hard.NSPACE(log2(n))
(3) Aqui está minha justificativa informal para a afirmação anterior:
Dado um o espaço ligado MNT e uma cadeia de entrada, é preciso determinar se existe uma computação aceitar na dada cadeia de entrada.log2(n)
Cada configuração na computação pode ser representada por essencialmente bits. Em outras palavras, podemos representar uma configuração por um grupo de variáveis de log 2 ( n ) .log2(n)log2(n)
A idéia é que tenhamos uma configuração inicial e uma configuração final e precisamos adivinhar o cálculo que ocorre no meio. Nós adivinhamos recursivamente as configurações "intermediárias" usando quantificadores existentes e recorremos verificando se a configuração "esquerda" vai para o "meio" e a configuração "média" vai para a "direita" usando todos os quantificadores.
Agora, para fazer isso funcionar, em vez de escolher uma configuração "intermediária", precisamos escolher um grupo de configurações "intermediárias" igualmente espaçadas entre as configurações "esquerda" e "direita". Em particular, poderíamos adivinhar configurações "intermediárias" igualmente espaçadas, usando quantificadores existentes com √n−−√variáveis e, em seguida, recorra a cada intervalo entre configurações, usando para todos os quantificadores com aproximadamenteasvariáveislog(n).n−−√∗log2(n)log(n)
A recursão só precisa continuar até a profundidade para poder cobrir um cálculo do comprimento √2∗log(n)que cada configuração possui no máximolog2(n)muitos bits.n−−√2∗log(n)=nlog(n)=2log2(n)log2(n)
Como a recursão é de profundidade , só temos O ( log ( n ) ) grupos de variáveis, ou seja, alternações. Como cada grupo de quantificadores possui apenas √O(log(n))O(log(n))n−−√∗log2(n) variables, in total we have O(n−−√∗log3(n)) variables.
Feel free to offer any feedback or corrections. Thank you very much and I hope this helps a little bit.
(4) A more general assertion as suggested by Ryan's answer:
You should be able to carry out the preceding construction in a more general way. Consider the following:
At each step of the recursion, break up into g(n) groups of "intermediate" configurations using c(n) bits per configuration. Then, do the recursion to depth d(n).
As long as we don't have too many variables and too many alternations, this seems to work fine. Roughly, we need the following to be satisfied:
- g(n)∗c(n)∗d(n)≤n
- d(n)≤log(n)
Our generalized approach will be used to simulate non-deterministic Turing machines that run for g(n)d(n) steps using c(n) bits of memory.
In particular, we pick the following:
The preceding inequalities are satisfied and we can carry out the construction to simulate non-deterministic Turing machines that run for roughly 2log2(n) steps using n√2∗log2n bits of memory.
In other words, we have a better hardness result than before. In particular, the problem is hard for NTISP(2log2(n),n√2∗log2n).
(5) Further generalizations:
In the preceding generalization, we were simulating non-deterministic time and space bounded Turing machines. However, we may be able to simulate alternating time and space bounded Turing machines as well.
Let me explain a little bit. So we use roughly log(n) alternations to do the recursion to depth log(n). However, we could use some of the alternations initially, let's say log(n)−−−−−√. Then, we could use the remaining log(n)−−−−−√ alternations to go to depth log(n)−−−−−√.
In this case, we could simulate alternating Turing machines that have log(n)−−−−−√ alternations with sublinear witness lengths, run for 2log32(n) steps, and use n√2∗log2n bits of memory.
In other words, the problem is hard for AltTimeSpace(log(n)−−−−−√,2log32(n),n√2∗log2n) with sublinear witness lengths. Alternatively, this class could be written using the STA notation mentioned in the comments above.
Thank you for the comments and feel free to offer any further corrections or clarifications. :)