1.1.6 · D5Arithmetic & Number Systems

Question bank — Order of operations — BODMAS - PEMDAS with nested brackets

1,654 words8 min readBack to topic

True or false — justify

Recall True or false items

In BODMAS, Division is always done before Multiplication. ::: False. The D and M are one single tier of equal rank; you resolve them from left to right, so whichever appears first goes first. In PEMDAS, Addition is always done before Subtraction. ::: False. Add and subtract share one tier; reads left to right as , not . A square-root sign counts as a grouping symbol, like a bracket. ::: True. Everything under the root is computed as one bundle first, exactly as if , not . and are just two ways of writing the same number. ::: False. because the power binds tighter than the minus; because the bracket pulls the sign into the base first. See Negative numbers and the unary minus sign. Reordering a same-tier chain, like turning into , never changes the answer. ::: False in general. but would need care; division is not commutative, so left-to-right reading is the only safe order — don't shuffle it. See Calculator vs mental arithmetic — parsing expressions. A fraction bar written vertically means you must add invisible brackets around the whole top and whole bottom. ::: True. means , which is why flattening it to gives a different expression. See Fractions — numerator and denominator as grouping. Multiplication is placed above addition in the hierarchy purely by arbitrary human choice. ::: False. It follows from meaning: multiplication is repeated addition, so it must be unpacked into its addition before it can be added to anything else. In , the "2 next to the bracket" is a special super-strong multiplication that beats a nearby division. ::: False. Implied multiplication is ordinary same-tier multiplication; under strict convention reads left to right as , then . There is no secret priority. A power tower like is read from the bottom up, doing first. ::: False. Exponentiation associates right to left, so the top exponent binds first: , then — not .


Spot the error

Recall Find and fix the flaw

", because A comes before S in BODMAS." ::: The error is treating as higher than . They are one tier: go left to right, , then . ", since a negative times a negative is positive." ::: There is no second negative here — the base is , not . The power acts first: . ", because I did the two divisions together." ::: Divisions are same-tier and must go left to right: , then . Grouping the divisors secretly inserts a bracket that isn't there. "In I did first because it's on the left." ::: Left-to-right only breaks ties within the same tier. The bracket is a higher tier and must finish before any addition outside it. See Arithmetic operations — addition, subtraction, multiplication, division. "." ::: The root groups everything beneath it, so add first: . The bar is an invisible bracket. "." ::: Multiplication is a higher tier than addition, so do first, then . "." ::: Exponent chains bind right to left, so comes first, giving , not . "To evaluate I started with ." ::: You must finish the innermost bracket before touching the outer sum, giving , then .


Why questions

Recall The reasoning behind the rules

Why is "innermost bracket first" not just a preference but a logical must? ::: The outer bracket's value depends on the inner one — you cannot plug in a number that hasn't been computed yet. Why do exponents sit above multiplication rather than below it? ::: An exponent is repeated multiplication (), so it is a shorthand one level up, and shorthands must be unpacked before the operation they compress. See Exponents and powers — laws of indices. Why does the world need a fixed order at all, instead of everyone reading left to right? ::: Pure left-to-right would make , breaking the promise that means one bundled quantity; a shared tiered grammar guarantees every person and calculator returns the same value. Why does a bracket "beat" every other rule, including exponents? ::: Brackets are a deliberate human override — an explicit instruction to compute a chunk as a finished value first, no matter what operations surround it. Why can't we treat "" in front of a number as automatically part of the number? ::: Because shows the minus is applied after the power unless a bracket ties it to the base; the sign is an operation, not a fixed label. See Negative numbers and the unary minus sign. Why is left-to-right the tiebreaker for equal-rank operations, rather than right-to-left? ::: It's a convention chosen to match how we read text; the key point is that some fixed rule exists so subtraction and division (which are order-sensitive) come out consistently. Why does a stack of exponents break the left-to-right habit and go right to left instead? ::: Because is defined as raised to the whole value ; the top exponent is itself a number that must be finished before the lower base can use it. See Exponents and powers — laws of indices.


Edge cases

Recall Boundaries and degenerate inputs

What happens to the rules if an expression has no brackets, powers, or ×÷ at all — just ? ::: Only the bottom tier applies, so read left to right: , then . Never . What is -style edge behaviour worth remembering when a power meets a minus, e.g. ? ::: The power binds first: , then the minus gives . Even a huge even exponent doesn't flip the outer sign, because the sign was never inside the base. How do you read a triple power tower ? ::: Right to left: first, then . The habit of "left first" is exactly what this edge case overturns. An empty bracket or a bracket with one number, like — does the rule still apply? ::: Yes; a lone value in brackets just equals itself, so and . Brackets never require an operation inside them. In , must you still evaluate the bracket even though the product will be zero? ::: Formally the order says evaluate the bracket first; but recognising the whole product is is a valid shortcut because multiplication by zero is zero regardless of the other factor. The rule and the shortcut agree. What does BODMAS say about a nested pair of the same bracket depth, like ? ::: They are independent and equal priority, so evaluate each in turn (left to right is fine): . Neither depends on the other. Does a unary minus applied to a whole bracket, , distribute automatically? ::: Compute the bracket first to get . You may also distribute the sign, but the order-of-operations reading is "finish the bracket, then negate." See Algebraic expressions — evaluating and substitution. If an expression is genuinely written ambiguously (like the infamous ), what does BODMAS actually decide? ::: It's not ambiguous under strict convention: implied multiplication is same-tier as division, so left to right gives , then . The real fix is to add brackets so no reader has to guess. See Calculator vs mental arithmetic — parsing expressions.


Connections