MathBored

Essential Math Primer
← Back to Primer Overview
R58 • Lesson 88 of 105

PEMDAS Pitfalls

Common mistakes with order of operations and left-to-right evaluation

Reserve & Extensions • K-12

Prerequisites: M22

Key Concepts

  • order of operations
  • PEMDAS
  • common errors
  • implicit grouping

PEMDAS Pitfalls

You probably know PEMDAS: Parentheses, Exponents, Multiplication/Division, Addition/Subtraction. But knowing the acronym and applying it correctly are two very different things. This lesson focuses on the tricky cases where even careful students make mistakes.

Quick Review

PriorityOperationsRule
1stParentheses (and other grouping)Innermost first
2ndExponentsEvaluate powers and roots
3rdMultiplication and DivisionLeft to right (equal priority)
4thAddition and SubtractionLeft to right (equal priority)

Pitfall 1: Multiplication and Division Are EQUAL

PEMDAS does not mean multiplication comes before division. They have equal priority and are performed left to right.

Worked Example 1: Left-to-Right Matters

Evaluate: 24 ÷ 4 × 3

  1. Work left to right: 24 ÷ 4 = 6
  2. Then: 6 × 3 = 18

Wrong approach: Doing multiplication first would give 24 ÷ 12 = 2. That is incorrect.

Pitfall 2: Negatives and Exponents

There is a critical difference between -32 and (-3)2:

-32 = -(32) = -9

The exponent applies only to 3. The negative is applied after.

(-3)2 = (-3)×(-3) = 9

The parentheses make the negative part of the base.

Worked Example 2: Negative Exponent Trap

Evaluate: -52 + 10

  1. Exponent first: 52 = 25
  2. Apply negative: -25
  3. Add: -25 + 10 = -15

Common wrong answer: 35 (from incorrectly computing (-5)2 = 25, then 25 + 10).

Pitfall 3: Fraction Bars as Grouping Symbols

A fraction bar acts like parentheses around the entire numerator and the entire denominator.

Worked Example 3: Fraction Bar Grouping

Evaluate: (8 + 4) / (2 + 1)

  1. Evaluate the numerator: 8 + 4 = 12
  2. Evaluate the denominator: 2 + 1 = 3
  3. Divide: 12 / 3 = 4

If you ignored grouping and wrote 8 + 4 / 2 + 1, you would get 8 + 2 + 1 = 11. Very different!

Pitfall 4: Implicit Multiplication

When you see 2(3 + 4), the multiplication between 2 and the parentheses is not given higher priority than other multiplication or division. It follows normal left-to-right rules.

The Viral Math Problem Trap

Expressions like "8 ÷ 2(2+2)" go viral because they are ambiguously written. In standard mathematical convention, multiplication and division are left to right: 8 ÷ 2 × 4 = 4 × 4 = 16. The real lesson: use parentheses to make your meaning clear. Good notation prevents confusion.

Pitfall 5: Addition and Subtraction Are EQUAL

Worked Example 4: Subtraction Order

Evaluate: 10 - 3 + 2

  1. Left to right: 10 - 3 = 7
  2. Then: 7 + 2 = 9

Incorrect: doing addition first gives 10 - 5 = 5.

When in Doubt, Add Parentheses

If you are ever unsure about order of operations, add parentheses to force the order you intend. Clear notation is not a sign of weakness -- it is a sign of precision.

Practice Problems

1. Evaluate: 18 ÷ 6 × 3

Show Solution

Left to right: 18 ÷ 6 = 3, then 3 × 3 = 9.

2. Evaluate: -42

Show Solution

The exponent applies to 4 only: -(42) = -16. (Not 16!)

3. Evaluate: 3 + 4 × 2 - 1

Show Solution

Multiplication first: 4 × 2 = 8. Then left to right: 3 + 8 - 1 = 10.

4. Evaluate: (6 + 2)2 ÷ 4 - 3

Show Solution

Parentheses: 8. Exponent: 82 = 64. Division: 64 ÷ 4 = 16. Subtraction: 16 - 3 = 13.

5. Evaluate: 2 × 32 - 4(5 - 2)

Show Solution

Parentheses: 5 - 2 = 3. Exponent: 32 = 9. Multiplication: 2 × 9 = 18 and 4 × 3 = 12. Subtraction: 18 - 12 = 6.

Lesson Summary

Overview