Existe uma linguagem NP completa (de preferência natural) , de modo que para cada seja ? Em outras palavras, contém precisamente metade de todas as instâncias de bits. L n
cc.complexity-theory
np
np-complete
Andras Farago
fonte
fonte
Respostas:
Eu fiz essa pergunta há alguns anos e Boaz Barak respondeu positivamente .
A declaração é equivalente à existência de uma linguagem NP completa onde | L n | é computável em tempo polinomial.L |Ln|
Considere fórmulas booleanas e SAT. Usando preenchimento e modificando ligeiramente a codificação das fórmulas, podemos garantir que e ¬ φ tenham o mesmo comprimento.φ ¬φ
Deixe ser uma codificação que⟨ ⟩
Considere
É fácil ver que é NP-completo.L
Se , o número de atribuições de verdade satisfazer τ ⊨ & Phi; e ∃ σ < τ σ ⊨ & Phi; é igual ao número de satisfazer as atribuições de verdade - 1 . Ao adicionar φ , ele soma o número de designações de verdade satisfatórias para φ .φ∈SAT
Existem designações de verdade. Cada τ satisfaz φ ou ¬ φ (e não ambos). Para cada fórmula φ , considere a 2 ( 2 | φ | + 1 ) cordas ⟨ φ ⟩ , ⟨ ¬ φ ⟩ , ⟨ φ , τ ⟩ , e ⟨ ¬ φ , τ ⟩ para τ ∈ { 0 ,2|φ| τ φ ¬φ φ 2(2|φ|+1) ⟨φ⟩ ⟨¬φ⟩ ⟨φ,τ⟩ ⟨¬φ,τ⟩ . Exatamente 2 | & Phi; | destes 2 | & Phi; | + 1 + 2 cordas estão em G . Isso significa que o número de cadeias de comprimento n em L é o número de fórmulas φ de comprimento codificado n multiplicado por 2 | & Phi; | qual tempo polinomial computável.τ∈{0,1}|φ| 2|φ| 2|φ|+1+2 L n L φ n 2|φ|
fonte
Aqui está uma sugestão de por que pode ser difícil criar um exemplo disso, embora eu concorde com o comentário de Kaveh de que seria surpreendente se não existisse. [Não é uma resposta, mas é muito tempo para comentar.]
Suppose that someone, say me, comes up with such a languageL . A natural way for me to prove that L=n:=|L∩{0,1}n|=2n−1 is to explicitly build a bijection between L∩{0,1}n and {0,1}n∖L . Since I personally am not able to decide instances of NP -hard problems, most "simple" bijections that I will come up with will have the form "f:{0,1}∗→{0,1}∗ is a length-preserving bijection, and x∈L if and only if f(x)∉L ." Furthermore, I'm likely to come up with such an f that is computable in polynomial time. But then NP=coNP , for f is a reduction from an NP coNP -complete one.
Of course, this objection can be gotten around by "simply" having the bijection be harder to compute than that. If your bijection takes exponential time - say it and its inverse might both beEXP -hard - then I think you're pretty safe. But if it only takes, say, quasi-polynomial time, then note that you still get the consequence coNP⊆NTIME(2(logn)O(1))=:NQP , from which I believe it follows by a simple induction with padding argument that PH⊆NQP . Now, if you believe the preceding containment is simply false, then no such quasi-poly-time computable bijection can save you. But even if you believe it might be true, then by coming up with such a bijection you would prove PH⊆NQP , which seems to be beyond current knowledge...
The objection can also be gotten around by simply not having such a bijection, but then it seems harder to see how to prove thatL has the desired property in the first place... And in fact, even if your proof isn't a bijection, you'd need it to be the case that no such easily computable bijection even exists.
Of course, this is also the type of thing where someone will come along with an example and we'll easily see how it gets around this objection, but I just wanted to throw this out there to say how anything with a simple enough bijection can't work (unless widely held beliefs are false).
(Related question: is there an oracle relative to which there is no suchL ?)
fonte