Question
Explain the BODMAS/PEMDAS rule for order of operations. Solve: , , and .
Solution — Step by Step
BODMAS stands for: Brackets → Orders (powers/roots) → Division → Multiplication → Addition → Subtraction.
Alternatively, PEMDAS: Parentheses → Exponents → Multiplication → Division → Addition → Subtraction.
Both are the same rule. Division and multiplication have equal priority (solve left to right). Addition and subtraction also have equal priority (left to right).
Problem 1:
Multiplication before addition: , then
(NOT — that would be wrong without brackets.)
Problem 2:
Division first: . Then left to right:
Problem 3:
Brackets first: . Then multiplication and division (left to right): and . Finally:
flowchart TD
A[BODMAS Priority] --> B[1. Brackets first]
B --> C[2. Orders - powers, roots]
C --> D[3. Division and Multiplication - left to right]
D --> E[4. Addition and Subtraction - left to right]
Why This Works
Without a fixed order, the same expression would give different answers depending on which operation you do first. BODMAS is a convention that everyone agrees on, so there is exactly one correct answer for every expression.
Common Mistake
The biggest mistake: thinking multiplication ALWAYS comes before division (because M comes before D in BODMAS). Actually, multiplication and division have equal priority — we solve them left to right. Same for addition and subtraction. Example: (left to right), NOT .
When in doubt, add brackets to make the order clear. Writing removes all ambiguity. Examiners love testing expressions where left-to-right order matters.