Quantifiers
Quantifiers say how many. The universal quantifier ∀ ("for all", "every", "each") claims something holds for every member of a set; the existential quantifier ∃ ("there exists", "some", "at least one") claims it holds for at least one. The crucial CAT skill is negation, because most "which must be true" traps hinge on it. The negation of "for all x, P(x)" is "there exists an x for which P(x) is false" — one counterexample destroys a universal claim. The negation of "there exists an x with P(x)" is "for all x, P(x) is false". A frequent error is over-negating: the opposite of "all are red" is "at least one is not red", NOT "none is red". Order matters too: "every student has a mentor" (∀ then ∃) is weaker than "there is a mentor for every student" (∃ then ∀). Read the quantifier, find the scope, and to disprove a universal claim just hunt for a single counterexample.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Connectives & negation
| Negation | ¬p is true exactly when p is false |
|---|---|
| Conjunction (AND) | p ∧ q true only when both p and q are true |
| Disjunction (OR) | p ∨ q false only when both p and q are false |
| Implication | p → q false only when p is true and q is false |
| Biconditional | p ↔ q true when p and q have the same truth value |
Logical identities (CAT power-tools)
| Contrapositive (equivalent) | (p → q) ≡ (¬q → ¬p) |
|---|---|
| Implication as OR | (p → q) ≡ (¬p ∨ q) |
| De Morgan (AND) | ¬(p ∧ q) ≡ ¬p ∨ ¬q |
| De Morgan (OR) | ¬(p ∨ q) ≡ ¬p ∧ ¬q |
| Negation of quantifiers | ¬(∀x P) ≡ ∃x ¬P; ¬(∃x P) ≡ ∀x ¬P |