If boolean formula $f$ is in CNF it is known that:$$\forall x \exists y_1 \exists y_2 .. \exists y_n : f(x, y_1, y_2..y_n) :\iff \exists y_1 \exists y_2 .. \exists y_n : f(0, y_1, y_2..y_n) \land f(1, y_1, y_2..y_n) :\iff \exists y_1 \exists y_2 .. \exists y_n : f(y_1, y_2..y_n) :\iff f(y_1, y_2..y_n)$$ Last formula is non-quantified CNF. For multiple $\forall$-quantified variables same reduction is also possible. SAT is NP problem, QSAT is PSPACE-complete (even in CNF). Does this involve that NP = PSPACE?
2026-04-07 03:16:41.1775531801
Quantified CNF: is not this a proof that NP = PSPACE?
106 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in COMPUTATIONAL-COMPLEXITY
- Product of sums of all subsets mod $k$?
- Proving big theta notation?
- Little oh notation
- proving sigma = BigTheta (BigΘ)
- sources about SVD complexity
- Is all Linear Programming (LP) problems solvable in Polynomial time?
- growth rate of $f(x)= x^{1/7}$
- Unclear Passage in Cook's Proof of SAT NP-Completeness: Why The Machine M Should Be Modified?
- Minimum Matching on the Minimum Triangulation
- How to find the average case complexity of Stable marriage problem(Gale Shapley)?
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Each of your purported equivalences is problematic:
In the first one, you seem to be moving $\forall x$ willy-nilly inside the $\exists$s. This does not preserve meaning: $$ \forall x\exists y (x=y) \qquad\text{and}\qquad \exists y(0=y\land 1=y) $$ are not equivalent -- the first one is obviously true and the second one just as obviously false.
In the second one, $f$ inexplicably changes from having $n+1$ parameters to having only $n$. What is going on there? Is it even the same $f$?
In the third one, where do the quantifiers suddenly go? You seem to be asserting that the formula $\exists y_1\cdots \exists y_n(f(y_1,\ldots,y_n))$ which has no free variables is equivalent to $f(y_1,\ldots,y_n)$ which has $n$ of them. Unless you imagine that the truth value of $f$ does not depend on its variables at all (which you don't seem to have any reason to), this can't be true.
Finally, your plan seems to be to prove that PSPACE${}\subseteq{}$NP by reducing QSAT to SAT. However, even if your equivalences worked, if you have $n$ universal quantifiers repeating your first rewrite for each of them would blow up the formula by a factor of $2^n$, so it is not a polynomial-time reduction and would not say anything about QSAT being in NP.