Exercises — Order of operations — BODMAS - PEMDAS with nested brackets
Level 1 — Recognition
Goal: spot which tier acts first. No long computation.
L1.1 In the expression , which single operation must you do first, and why?
Recall Solution
WHAT: The two operations present are and . WHY: lives one tier above (multiplication is repeated addition, so it must be unpacked before adding). So multiply first.
- Answer: — the multiplication happens first.
L1.2 True or false: in you should add before you subtract (because A comes before S in BODMAS). Give the correct value.
Recall Solution
False. and share one tier, so we go strictly left→right.
- Answer: . (Doing first would wrongly give .)
L1.3 Which do you evaluate first in : the top, the bottom, or the division? Just name the rule.
Recall Solution
The fraction bar is a hidden bracket: it groups the whole top and the whole bottom. So you finish each grouped part before dividing.
- Top: . Bottom: . Then . Rule named: a fraction bar brackets numerator and denominator separately. (See Fractions — numerator and denominator as grouping.)
Level 2 — Application
Goal: run the full evaluation loop on clean expressions.
L2.1 Evaluate .
Recall Solution
and share a tier → left→right.
- Answer: . (Doing first would wrongly give .)
L2.2 Evaluate .
Recall Solution
WHAT/WHY: Orders (powers) beat , which beats . Climb down the ladder.
- Power:
- Multiply:
- Add: Answer: .
L2.3 Evaluate .
Recall Solution
- Bracket first: . Now .
- Same-tier left→right: , then .
- Add: . Answer: .
L2.4 Evaluate .
Recall Solution
The bar brackets the top: .
- Inside top, before : , so top .
- Divide: . Answer: .
Level 3 — Analysis
Goal: nested groupings, signs, and hidden brackets.
L3.1 Evaluate .
Recall Solution
Innermost first.
- Inside : before → , then .
- Now .
- . Answer: .
L3.2 Evaluate .
Recall Solution
WHY the two terms differ: in the power binds tighter than the unary minus, so it means . In the bracket forces the sign into the base first. (See Negative numbers and the unary minus sign.)
- Sum: . Answer: .
L3.3 Evaluate . Notice how the bar changes things.
Recall Solution
Each bar brackets its own numerator.
- Now . Answer: . (If someone wrote it flat as they'd get — a different expression, because the bar's grouping vanished.)
L3.4 Evaluate .
Recall Solution
Deepest bracket outward.
- Power:
- . Answer: .
Level 4 — Synthesis
Goal: combine powers, nested brackets, fractions and signs in one problem.
L4.1 Evaluate .
Recall Solution
Two grouped chunks — handle each fully, then combine.
- Left fraction: top . Bracket , power , then . Divide: .
- Right term: inside : power , then . Multiply: .
- Combine: . Answer: .
L4.2 Evaluate .
Recall Solution
- Innermost : power , then .
- Outer bracket .
- Now .
- Same-tier left→right: , then . Line: .
- left→right: , then . Answer: .
L4.3 Substitute into and evaluate (this links to Algebraic expressions — evaluating and substitution).
Recall Solution
WHY bracket every substitution: when a variable is negative, dropping the bracket lets a stray minus attach to the power. Substitute with brackets.
- Now . Answer: .
Level 5 — Mastery
Goal: the notorious traps and self-checking under pressure.
L5.1 Evaluate the internet-famous using the standard convention, and state the rule that removes the ambiguity.
Recall Solution
Rule: means — a multiplication of the same tier as . So after the bracket, go left→right. (See Calculator vs mental arithmetic — parsing expressions.)
- Bracket: . Line: .
- Left→right: , then . Answer: . (When authoring, add brackets — write or — to remove all doubt.)
L5.2 Evaluate . Watch every sign and the fraction bar.
Recall Solution
WHY careful: unary minus vs power on top; a zero exponent on the bottom.
- Top: . . Sum .
- Bottom: . (any nonzero base to the power is ; see Exponents and powers — laws of indices). So bottom .
- The bottom is → division by zero is undefined. Answer: undefined (division by zero). The lesson: always finish the denominator before declaring an answer.
L5.3 Evaluate .
Recall Solution
Deepest bracket outward, tracking tiers.
- Deepest .
- .
- Outer bracket : power , then .
- The whole bracket is raised: .
- Now . Multiply first: .
- Line: . Left→right: , then . Answer: .
L5.4 A calculator returns for the input 8 ÷ 2 ^ 2, but a student expected . Who is right, and where did the student's reading go wrong?
Recall Solution
The calculator is right: the answer is .
- WHY: Orders (the power) beat . So first, then .
- The student's error: they read left→right (, then ), applying the same-tier tie-breaker across tiers. Power is a higher tier and always jumps the queue. Answer: .
Master check (fill the blanks)
Recall Cover and self-test
::: ::: ::: ::: ::: ::: ::: ::: ::: undefined (denominator )
Connections
- Order of Operations — BODMAS / PEMDAS with Nested Brackets (parent)
- Arithmetic operations — addition, subtraction, multiplication, division
- Exponents and powers — laws of indices
- Fractions — numerator and denominator as grouping
- Negative numbers and the unary minus sign
- Algebraic expressions — evaluating and substitution
- Calculator vs mental arithmetic — parsing expressions