Intuition The one core idea
A string of numbers and symbols like 2 + 3 × 4 is just a list of jobs , and the whole topic of BODMAS/PEMDAS exists to answer one question: in what order do we do the jobs? Everything below is the toolkit of symbols you must recognise before you can even ask that question — because you cannot order jobs you cannot read.
This page assumes nothing . If the parent note (Order of operations — BODMAS - PEMDAS with nested brackets ) waved a symbol at you and you weren't sure, it is defined here, from the picture up.
An expression is a written recipe made of numbers joined by operation signs (like + , × ). It is a set of instructions , not yet a single number. Evaluating it means following the instructions until only one number is left.
Think of it like a to-do list. 2 + 3 × 4 says "you have an add-job and a multiply-job — do them and report the final number." The whole chapter is about the word order in that sentence.
Figure s01 (described): the expression 2 + 3 × 4 sits at the top. An amber arrow goes left to "multiply first" giving 2 + 12 = 14 , labelled CORRECT . A white arrow goes right to "add first (wrong)" giving 5 × 4 = 20 , labelled WRONG . Same three numbers, two reading orders, two answers — that gap is the entire reason the rule exists.
Definition The two acronyms, expanded
They are two names for the same rule , taught in different countries. Each letter is the first letter of a tier of jobs, listed in the order you do them.
BODMAS = B rackets · O rders · D ivision · M ultiplication · A ddition · S ubtraction.
PEMDAS = P arentheses · E xponents · M ultiplication · D ivision · A ddition · S ubtraction.
"Orders" and "Exponents" mean the same thing (powers and roots); "Brackets" and "Parentheses" mean the same thing . The D/M and M/D swap between the two names is harmless — those two live on one shared tier and are always done left to right, as Section 6 shows.
Mnemonic Read the acronym, but remember the tiers
The word is only a memory hook for "Brackets → Powers → ×÷ → +−." Never read "D before M" or "A before S" out of the letters — that is the classic trap the parent note warns about.
These are the four verbs of arithmetic. See Arithmetic operations — addition, subtraction, multiplication, division for their full story; here we only need to recognise them.
Definition The four signs
+ (plus ) — combine amounts. Picture: two piles of blocks pushed together.
− (minus ) — take away. Picture: blocks removed from a pile.
× (times ) — repeated adding. Picture: 3 rows of 4 dots = 3 × 4 .
÷ (divide ) — sharing into equal groups. Picture: 12 dots dealt into 3 equal rows.
Definition A fifth way to write "times": juxtaposition
When two things are written right next to each other with no sign between them , that gap silently means multiply . This is called implicit multiplication (or juxtaposition ).
2 ( 1 + 2 ) means 2 × ( 1 + 2 ) — the number touching a bracket multiplies it.
3 a means 3 × a — a number touching a letter (see Algebraic expressions — evaluating and substitution ).
Why it matters here: juxtaposition is still just multiplication , so it lives on the same tier as × and ÷ and obeys left-to-right. In 48 ÷ 2 ( 1 + 2 ) you do 48 ÷ 2 = 24 first, then 24 × 3 = 72 — the invisible sign gets no special priority.
× is "bigger" than +
3 × 4 is a shorthand for 4 + 4 + 4 . It packs three additions into one symbol. The topic needs this fact: to honour the shorthand, you must unpack (compute) the multiply before you fold its result into a nearby add. That single observation is the seed of the whole tier order.
Figure s02 (described): a three-rung ladder. Bottom rung — addition 4 + 4 + 4 . Middle rung — multiplication as stacked adds 3 × 4 , reached by a cyan upward arrow. Top rung — exponent as stacked multiplies 3 2 = 3 × 3 , reached by an amber upward arrow labelled "unpack first." Each rung is a shorthand for many of the rung below.
We need this because "Orders / Exponents" is a whole tier of BODMAS. See Exponents and powers — laws of indices for the laws; here we just decode the symbol.
Definition The power notation
a n
a n means: write a down n times and multiply them all together.
The small raised number n is the exponent (or power , or index ); the big number a is the base .
Picture: 3 2 = 3 × 3 — a square of side 3, holding 9 unit boxes.
Picture: 2 3 = 2 × 2 × 2 — a cube .
Common mistake The raised-number is not "times
n "
3 2 is not 3 × 2 = 6 . It is 3 × 3 = 9 . The exponent counts how many copies to multiply , not a factor.
3 2 = 9 ✓ 3 × 2 = 6 ✗
Worked example Powers of a fraction — where does the exponent reach?
A power written on one number touches only that number, not its neighbours.
2 2 1 = ( 2 2 ) 1 = 4 1
Here the 2 is squared first (Orders beat the division of the fraction bar), giving 4 1 , not ( 2 1 ) 2 — though those happen to be equal here, watch 3 2 1 = 9 1 versus ( 1 3 ) 2 = 9 to feel the difference.
To square the whole fraction , you must bracket it: ( 2 1 ) 2 = 2 2 1 2 = 4 1 . The bracket is what tells the exponent to reach both top and bottom.
Definition Brackets (grouping symbols)
Brackets draw a fence around a chunk of an expression, meaning "treat everything inside as one finished number before you do anything outside."
They come in shapes that mean the same thing , used from inside out for readability:
( ) round / parentheses
[ ] square
{ } curly / braces
The shapes carry no difference in power — only nesting depth. See the figure.
Figure s03 (described): the nested expression { 6 + 2 × [ 3 + ( 4 − 1 ) 2 ] } with three coloured rectangles drawn around it. The amber innermost box hugs ( 4 − 1 ) , labelled "innermost first." A cyan box wraps the [ ] layer, labelled "next." A white box wraps the outer { } , labelled "last." The final value = 30 sits in amber below.
Intuition Why brackets beat everything
Every tier rule (powers, then × ÷ , then + − ) is a default . A bracket is the human override switch : "ignore the defaults inside here, and finish this piece first, because the rest of the expression depends on its value." Nested brackets = a value inside a value; you must finish the innermost one first, because the outer one is still waiting on it.
Common mistake "Brackets means only round
( ) "
Fix: [ ] , { } , the fraction bar , and the root sign (next up) are all grouping fences. Resolve the innermost , whatever its shape.
Definition The square-root sign
x asks the reverse question of "squaring": "which positive number, multiplied by itself, gives x ?" So 9 = 3 because 3 × 3 = 9 .
The long horizontal bar (the vinculum ) that stretches over the top is a grouping fence with a lid : everything under the bar is computed first , as if bracketed.
9 + 16 = 25 = 5 — the bar brackets 9 + 16 before the root acts.
9 + 16 = 3 + 16 = 19 — here the bar covers only the 9 , so the + 16 stays outside.
We need this because the parent's Example 4 treats a fraction as grouped. See Fractions — numerator and denominator as grouping .
We need this for the parent's Example 5, the − 3 2 trap. See Negative numbers and the unary minus sign .
Definition Binary minus vs unary minus
Binary minus sits between two numbers and means subtract : 7 − 2 .
Unary minus sits in front of one number and means the negative of : − 3 is "negative three."
Same symbol, two roles — context (is there a number on its left?) tells you which.
Figure s04 (described): left half shows 7 − 2 labelled "binary: subtract"; right half shows − 3 labelled "unary: negative of." Below, in amber: − 3 2 = − ( 3 2 ) = − 9 on the left and ( − 3 ) 2 = 9 on the right, with a white caption "bracket forces the sign into the base."
Definition Left-to-right within a tier
When two jobs sit on the same tier (both × ÷ , or both + − ), there is no boss between them — so we simply read like a sentence: leftmost job first.
Picture: your eyes sweeping across the line, resolving each equal-rank job as you meet it.
Numbers and the four signs
Multiplication as repeated addition
Juxtaposition means multiply
Exponents as repeated multiplication
Root sign as reverse of squaring
Fraction bar as hidden brackets
Unary minus vs binary minus
Brackets as override fence
Tier ladder Powers over times over plus
Binding strength who grabs first
BODMAS PEMDAS reading order
Evaluation loop innermost first
Each box is a symbol or idea from this page; every arrow says "you must own this before the next makes sense." They all funnel into the one rule the parent teaches.
See also Algebraic expressions — evaluating and substitution and Calculator vs mental arithmetic — parsing expressions for where these symbols travel next.
Cover the right side; say your answer aloud before revealing.
What is an expression, in one phrase? A written list of jobs (numbers joined by operation signs) to be reduced to one number.
What do the letters BODMAS stand for? Brackets, Orders, Division, Multiplication, Addition, Subtraction.
What do the letters PEMDAS stand for? Parentheses, Exponents, Multiplication, Division, Addition, Subtraction.
Are BODMAS and PEMDAS different rules? No — same rule, different country's name; Orders = Exponents, Brackets = Parentheses.
What does × secretly stand for? Repeated addition — 3 × 4 = 4 + 4 + 4 .
What does it mean when two things are written with no sign between them? Juxtaposition — implicit multiplication, e.g. 2 ( 1 + 2 ) = 2 × ( 1 + 2 ) ; still the ×÷ tier.
What does a n mean? Multiply n copies of a together; n is the exponent, a is the base.
Is 3 2 equal to 6 ? No — it is 3 × 3 = 9 . The 2 counts copies, it is not a factor.
What is 2 2 1 ? 4 1 — the 2 is squared first (Orders), giving 4 1 .
What does the sign ask, and what does its bar do? "Which positive number times itself gives this?"; the bar brackets everything underneath.
Evaluate 9 + 16 . 5 — the bar groups 9 + 16 = 25 first, then the root.
Do [ ] and { } mean something different from ( ) ? No — all are grouping fences; only nesting depth differs.
What does a fraction bar do to its top and bottom? Brackets the whole numerator and the whole denominator separately.
What are the two jobs of the minus sign? Binary (subtract between two numbers) and unary (negative of one number).
Why is − 3 2 = − 9 ? The exponent binds tighter than the unary minus: − ( 3 2 ) = − 9 .
Why is ( − 3 ) 2 = 9 ? The bracket forces − 3 to be the base: ( − 3 ) × ( − 3 ) = 9 .
When two jobs share a tier, how do you order them? Left to right, like reading a sentence.
Evaluate 8 − 3 + 2 correctly. 7 (left to right), not 3 .