BODMAS/PEMDAS rule — order of operations with tricky examples

easy CBSE 3 min read

Question

Evaluate 8+2×53÷(41)8 + 2 \times 5 - 3 \div (4 - 1) using BODMAS. Why does the order of operations matter?

(CBSE 6 Board pattern)


Solution — Step by Step

LetterOperationPriority
BBrackets (parentheses)1st (highest)
OOrders (powers, roots)2nd
DDivision3rd (left to right)
MMultiplication3rd (left to right)
AAddition4th (left to right)
SSubtraction4th (left to right)

D and M have the SAME priority — work left to right. Same for A and S.

8+2×53÷(41)8 + 2 \times 5 - 3 \div (4 - 1)

Brackets: (41)=3(4 - 1) = 3

Expression becomes: 8+2×53÷38 + 2 \times 5 - 3 \div 3

2×5=102 \times 5 = 10 and 3÷3=13 \div 3 = 1

Expression becomes: 8+1018 + 10 - 1

8+10=188 + 10 = 18, then 181=1718 - 1 = \mathbf{17}

If we had ignored BODMAS and gone left to right blindly: 8+2=108 + 2 = 10, 10×5=5010 \times 5 = 50, 503=4750 - 3 = 47, 47÷315.6747 \div 3 \approx 15.67. A completely wrong answer.

flowchart TD
    A["Given an expression"] --> B["Step 1: Solve BRACKETS first"]
    B --> C["Step 2: Evaluate ORDERS - powers, roots"]
    C --> D["Step 3: Do DIVISION and MULTIPLICATION left to right"]
    D --> E["Step 4: Do ADDITION and SUBTRACTION left to right"]
    E --> F["Final Answer"]

Why This Works

Without a fixed order, the same expression gives different answers. BODMAS is a universal agreement so that everyone reading "2+3×42 + 3 \times 4" gets the same result (14, not 20). Multiplication and division are “stronger” operations because they represent repeated addition — they naturally come before simple addition and subtraction.

Brackets override everything because they are explicit instructions: “do this first.” That is why we use brackets to force a specific order when needed.


Alternative Method

PEMDAS is the American version of the same rule: Parentheses, Exponents, Multiplication, Division, Addition, Subtraction. The rules are identical — just different names.

A common memory trick: “Big Oranges Don’t Make Apples Sweet” for BODMAS.

When in doubt, add brackets to make your intention clear. Writing (2+3)×4=20(2 + 3) \times 4 = 20 vs 2+(3×4)=142 + (3 \times 4) = 14 removes all ambiguity. Examiners sometimes test whether you know that D and M have equal priority — solve them left to right, not “D before M.”


Common Mistake

Many students think Division always comes before Multiplication because D appears before M in BODMAS. This is wrong. D and M have EQUAL priority — you work left to right. Example: 12÷2×3=6×3=1812 \div 2 \times 3 = 6 \times 3 = 18 (left to right), NOT 12÷6=212 \div 6 = 2 (doing multiplication first). The same applies to Addition and Subtraction.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next