Pre-Algebra — Numbers & First Variables
Order of operations (PEMDAS)
ELI5: when an expression mixes operations, everyone must agree on the order or we'd get different answers. The rule is PEMDAS: Parentheses, then Exponents, then Multiply/Divide (left to right), then Add/Subtract. So 2 + 3 × 4 = 14 (multiply first), not 20.
= multiply before adding: 14
✓ pass not 20 — × beats +
= parentheses jump the queue: 20
✓ pass now the addition goes first
Real-world hook: every spreadsheet, calculator, and programming language obeys exactly this order — get it wrong and a budget or a dosage comes out wrong.
Try it yourself: evaluate 5 + 2 × 3² (exponent first, then ×, then +).
= ✏️ Your turn: evaluate 5 + 2 × 3². Do 3² first (= 9), then ×2, then +5.
✓ pass green when you follow PEMDAS correctly