Order of Operations
Order of operations is a set of rules that determines which mathematical operations to perform first in an expression containing multiple operations. The standard convention follows PEMDAS: Parentheses, Exponents, Multiplication and Division (left to right), Addition and Subtraction (left to right). Without these rules, the expression 3 + 4 × 2 could equal either 11 or 14, creating mathematical ambiguity.
Why it matters
Order of operations ensures mathematical expressions have a single, unambiguous answer across all contexts. In programming, calculators follow PEMDAS to execute formulas correctly — a payroll system calculating 40 hours × $15 per hour + $50 bonus must compute 40 × 15 + 50 = $650, not 40 × (15 + 50) = $2,600. Scientific formulas rely on precise operation order: calculating kinetic energy as ½mv² requires squaring velocity before multiplying by mass. Financial calculations like compound interest use exponents that must be evaluated before multiplication. Architecture and engineering depend on correct formula evaluation when calculating loads, angles, and measurements. Students encounter order of operations in CCSS 5.OA when evaluating expressions with parentheses, building foundation skills for algebra, where expressions like 3x + 2(x - 4) require systematic evaluation order.
How to solve order of operations
Order of Operations (PEMDAS)
- Parentheses first.
- Then exponents.
- Then multiplication and division (left to right).
- Then addition and subtraction (left to right).
Example: 3 + 4 × 2 = 3 + 8 = 11 (not 14).
Worked examples
Which operation do you do first in: 3 + 3 × 2?
Answer: Multiplication: 3 × 2 = 6
- Multiply first → 3 × 2 = 6 — Multiplication before addition (PEMDAS).
- Then add → 3 + 6 = 9 — Now add the remaining term.
- Verify → 3 + 3 × 2 = 9 ✓ — Check the answer.
9 packs of 7 stickers, plus 6 extra. How many stickers in total?
Answer: 69
- Multiply packs by stickers → 9 × 7 = 63 — Find total stickers in packs first.
- Add the extras → 63 + 6 = 69 — Then add the extra stickers.
- Verify → 9 × 7 + 6 = 69 ✓ — Check.
What is different about 7 × (8 + 3) vs 7 × 8 + 3? Calculate both.
Answer: 7 × (8 + 3) = 77, 7 × 8 + 3 = 59
- With parentheses → 7 × (8 + 3) = 7 × 11 = 77 — Parentheses force addition first.
- Without parentheses → 7 × 8 + 3 = 56 + 3 = 59 — Without parentheses, multiplication happens first.
- Difference → 77 − 59 = 18 — Parentheses change the result.
Common mistakes
- Working left to right without regard for operation priority produces 3 + 4 × 2 = 14 instead of the correct answer 11
- Ignoring parentheses leads to calculating 7 × 8 + 3 = 59 when the expression 7 × (8 + 3) actually equals 77
- Treating exponents as regular multiplication gives 2 × 3² = 36 instead of the correct result 2 × 9 = 18