2
Part 0 · Lesson 2

Order of Operations.

PEMDAS — the universal rule for which thing gets done first.

Two people compute 3+4×23 + 4 \times 2 and get different answers — one says 1414, the other 1111. Math has a fixed rule for who's right: PEMDAS.

PEMDAS

  1. PParentheses (grouping symbols) — anything inside ( ), [ ], or { } first.
  2. EExponents — like 323^2 or 9\sqrt{9} — next.
  3. MDMultiplication & Division — left to right, same priority.
  4. ASAddition & Subtraction — left to right, same priority.

The trick most people miss: M and D are equal priority — you do them in left-to-right order. Same for A and S. There's no "multiplication before division."

8÷4×2  =  2×2  =  4(left to right — NOT 8÷8=1)8 \div 4 \times 2 \;=\; 2 \times 2 \;=\; 4 \quad\text{(left to right — NOT } 8 \div 8 = 1\text{)}

Worked example — the classic trap

3+4×2  =  3+8  =  113 + 4 \times 2 \;=\; 3 + 8 \;=\; 11 \quad\checkmark Multiplication has higher priority than addition, so 4×24 \times 2 runs first.

If you wanted addition to go first, you'd need parens: (3+4)×2=14(3+4) \times 2 = 14.

With negatives

3+4×(2)  =  3+(8)  =  11-3 + 4 \times (-2) \;=\; -3 + (-8) \;=\; -11

Multiplication first (42=84 \cdot -2 = -8), then add to 3-3.

With exponents

2+32  =  2+9  =  112 + 3^2 \;=\; 2 + 9 \;=\; 11 (2+3)2  =  52  =  25(2 + 3)^2 \;=\; 5^2 \;=\; 25

graphing calculator

Type the expressions from the margin note. Compare your answers.

marginalia & questions
Anything you’d like to ask?
Worked examples, alternative explanations, why a rule works.