Foundations Unit F1

Operations & Integers

PEMDAS, left-to-right ties, and the sign-vs-exponent trap.

The priority order for mixed +, −, ×, ÷, and exponents, the two subtleties that cost the most points, and a step-by-step solver to check any expression.

Why everyone needs the same reading order

You grab a $66 sandwich and two $55 drinks, so the total is 6+2×56 + 2 \times 5 dollars. Read that strictly left to right and you get 8×5=408 \times 5 = 40 — a forty-dollar snack run. Compute the drinks first and you get 6+10=166 + 10 = 16, which is what the cashier will actually charge. Both readings look reasonable, and that’s exactly the problem: a math expression — numbers joined by ++, -, ×\times, ÷\div, and powers like 323^2 — is useless if two people can read it two ways. So math fixed one official reading order, the same way a language fixes its grammar. Every expression means exactly one number; this module is about how to find it.

The order isn’t arbitrary

Here’s the logic hiding under the rule. 2×52 \times 5 is packed addition — shorthand for 5+55 + 5. And 323^2 is packed multiplication — shorthand for 3×33 \times 3. The convention that makes expressions readable is simply: unpack the densest shorthand first. Powers unpack before ×\times and ÷\div; ×\times and ÷\div unpack before ++ and -; and parentheses outrank everything, because they’re the writer saying “treat this as one thing.”

Look at the snack bill again with those eyes: in 6+2×56 + 2 \times 5, the 2×52 \times 5 is one bundled number waiting to be opened. The ++ can’t grab the 22, because the 22 is already spoken for. That’s why “multiply before add” gives the sensible $1616 — it’s not a decree to memorize so much as a way of seeing which numbers are already glued together.

Walk one through before the rule

Try this one — every kind of move shows up once:

parentheses
(1+4)=5(1 + 4) = 5, so 402×(1+4)2÷540 - 2 \times (1+4)^2 \div 5 becomes 402×52÷540 - 2 \times 5^2 \div 5.
exponent
52=255^2 = 25   →   402×25÷540 - 2 \times 25 \div 5.
tie: leftmost first
×\times and ÷\div are equal rank, so scan left to right: 2×25=502 \times 25 = 50 first   →   4050÷540 - 50 \div 5.
finish the tie
50÷5=1050 \div 5 = 10   →   401040 - 10.
last
4010=3040 - 10 = 30.

Written as a ladder, that order is:

PriorityOperation
1 (highest)Parentheses — anything inside ( )(\ ) first
2Exponents — powers like 323^2
3Multiply / Divide — equal rank, tie → left to right
4 (lowest)Add / Subtract — equal rank, tie → left to right

Most people remember it as PEMDAS (“Please Excuse My Dear Aunt Sally”). The four letters are the easy part. The part worth drilling is that M ties with D and A ties with S — four operations, but only two priority levels between them.

Don't solve it — just click the operation PEMDAS says goes first.

6+2×5
Correct so far: 0
Spot the first move

Before you click each round, say the move out loud. When 12÷3×212 \div 3 \times 2 comes up, decide: ÷\div or ×\times? (It’s a tie — so the leftmost one fires.) When 5+235 + 2^3 appears, notice the exponent wins even though the ++ sits first in the line. And in 104+510 - 4 + 5, the - goes first for the same tie reason.

Why the classic traps feel right

“Multiply always comes before divide.” The mnemonic itself plants this one — PEMDAS spells M before D, so it looks ranked. But dividing by 33 is the same move as multiplying by 13\tfrac{1}{3}; they’re one operation in two costumes, and neither can outrank the other. Watch what happens if you believe the ranking: 18÷3×218 \div 3 \times 2 becomes 18÷6=318 \div 6 = 3. The real reading is left to right — (18÷3)×2=12(18 \div 3) \times 2 = 12. Same digits, answers four times apart. The identical logic covers ++ and -: subtracting 44 is adding 4-4, so in 104+510 - 4 + 5 you take the - first (getting 1111) rather than regrouping the tail into 109=110 - 9 = 1.

32-3^2 is 99.” We say “negative three squared,” and the ear hears 3-3 as one number. But on paper, an exponent grabs only the symbol it’s touching — here, just the 33. The minus sign means “the opposite of” and applies afterwards: 32=(32)=9-3^2 = -(3^2) = -9. To square the whole negative number you must glue it together with parentheses: (3)2=(3)(3)=9(-3)^2 = (-3)(-3) = 9.

Watch one worked all the way through

The expression below mixes everything. Before you read each line, predict the next move — parentheses first, then the exponent, then… which of the ×\times and ÷\div fires first here, and why?

start
A full reduction, one step at a time

Each step applies exactly one operation — the highest-priority one currently available — and boxes in what just changed. If your prediction and the boxed move ever disagree, that line is telling you exactly which rung of the ladder to revisit.

The one thing to remember

An expression is one number wearing layers of shorthand, and you unwrap the densest layer first: parentheses, then powers, then ×/÷\times/\div, then +/+/- — and inside a tied layer, you just read left to right like a sentence. When a minus sign is involved, parentheses decide whether it’s part of the number or applied after.

The one rule, in strict order

PriorityOperation
1Parentheses ( )(\ )
2Exponents
3Multiply / Divide — tie, left to right
4Add / Subtract — tie, left to right

Worked example

For 203×22+(61)20 - 3 \times 2^2 + (6 - 1):

parens
(61)=5(6 - 1) = 5   →   203×22+520 - 3 \times 2^2 + 5
exponent
22=42^2 = 4   →   203×4+520 - 3 \times 4 + 5
multiply
3×4=123 \times 4 = 12   →   2012+520 - 12 + 5
subtract
2012=820 - 12 = 8 (leftmost of the tied +/−)   →   8+58 + 5
add
8+5=138 + 5 = 13

Classic traps

Quick reference

ExpressionResult
3+4×23 + 4 \times 23+8=113 + 8 = 11
(3+4)×2(3 + 4) \times 27×2=147 \times 2 = 14
202×3220 - 2 \times 3^22018=220 - 18 = 2
12÷2×312 \div 2 \times 36×3=186 \times 3 = 18
start
Evaluate:

Work through PEMDAS one operation at a time — parentheses, then exponents, then ×÷ and +− left to right.

Correct: 0Attempts: 0Streak: 0Best: 0