Negating Quantifiers
What’s the opposite of “everyone passed”?
It’s NOT “everyone failed.”
It’s “someone didn’t pass.”
The Rule
To negate a quantified statement, you do two things:
- Flip the quantifier — ∀ becomes ∃, and ∃ becomes ∀
- Move the NOT (¬) inside — negate the predicate
Flip and push ¬ inside.
Negating ∀ (Universal)
¬(∀xP(x))≡∃x¬P(x)
| Step | What happens |
|---|
| Start | ¬(∀xP(x)) — “NOT everyone passed” |
| Flip ∀ to ∃ | ∃x... |
| Negate predicate | ∃x¬P(x) — “Someone didn’t pass” |
“Not all” = “at least one doesn’t”
Negating ∃ (Existential)
¬(∃xP(x))≡∀x¬P(x)
| Step | What happens |
|---|
| Start | ¬(∃xP(x)) — “NOT someone passed” (nobody) |
| Flip ∃ to ∀ | ∀x... |
| Negate predicate | ∀x¬P(x) — “Everyone didn’t pass” |
“None” = “all don’t”
Negating Nested Quantifiers
Same rule as before, but apply it to each quantifier from left to right.
Example:
¬(∀x∃yP(x,y))≡∃x∀y¬P(x,y)
| Step | What happens |
|---|
| Start | ¬(∀x∃yP(x,y)) |
| Flip first ∀ to ∃ | ∃x¬(∃yP(x,y)) |
| Flip second ∃ to ∀ | ∃x∀y¬P(x,y) |
Flip each quantifier, negate the predicate at the end.
Three or More Quantifiers
Same rule. Just keep flipping left to right.
¬(∀x∃y∀zP(x,y,z))≡∃x∀y∃z¬P(x,y,z)
| Step | Result |
|---|
| Start | ¬(∀x∃y∀zP) |
| Flip ∀ to ∃ | ∃x¬(∃y∀zP) |
| Flip ∃ to ∀ | ∃x∀y¬(∀zP) |
| Flip ∀ to ∃ | ∃x∀y∃z¬P |
No matter how many quantifiers, flip each one and negate at the end.