Every symbol explained with a shape-based memory hook. Click any card to unlock the full breakdown.
| Logic | Sets | Plain English |
|---|---|---|
| A ∧ B | A ∩ B | A AND B (both) |
| A ∨ B | A ∪ B | A OR B (either) |
| ¬A | A' | NOT A (flip it) |
| A → B | A' ∪ B | If A then B |
| ∀x P(x) | every element | For ALL x |
| ∃x P(x) | at least one element | There EXISTS an x |
| π (projection) | pick columns | SQL SELECT |
| σ (selection) | filter rows | SQL WHERE |