Truth Tables
A truth table lists every combination of truth values for the simple statements and records the result for the compound one. With two variables there are four rows (TT, TF, FT, FF); with three there are eight (2ⁿ rows for n variables). The key behaviours to memorise: ¬p just flips p; p ∧ q is true only in the all-true row; p ∨ q is false only in the all-false row; p → q is false ONLY when p is true and q is false (a true premise leading to a false conclusion); p ↔ q is true exactly when p and q match. A compound that comes out true in every row is a tautology; one false in every row is a contradiction. In CAT and XAT you rarely draw the full table — you scan for the single damning row. To prove an implication false you only need one case where the premise holds but the conclusion fails; to prove a tautology you confirm no such failing row can exist.
✅ 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 |