Order of operations (BODMAS)
If everyone evaluated in their own order, the world would be in chaos. Luckily, mathematicians agreed long ago on a single priority list , captured by the friendly word BODMAS.
Idea
BODMAS stands for:
- Brackets , do the contents of brackets first.
- Of , handle "of" (a fancy word for multiplication, e.g., "half of " ).
- Division and Multiplication , do these next, left to right, as they appear.
- Addition and Subtraction , do these last, left to right.
A key subtlety: D and M sit at the same level and are evaluated left to right. Similarly A and S are equal and left-to-right. So is (not ).
For : by BODMAS, multiplication first , , then addition , .
For nested brackets, work from the innermost outwards. .
You will encounter different bracket shapes: round , curly , square . They all do the same job , group what is inside. By convention, when nested we write innermost as , then , then , but any consistent use is fine.
The single best habit: write one step per line. Each line solves one operation. This makes mistakes easy to spot.
Worked examples
Example 1. Evaluate .
By BODMAS, do and first:
Example 2. Evaluate .
and are equal; go left to right. Answer: .
Example 3. Evaluate .
Innermost bracket: . Now . Then . Finally .
Example 4. Evaluate .
"Of" is multiplication: . Then .
Try it yourself
- Evaluate .
- Evaluate .
- Evaluate .
- Evaluate .
- Evaluate .
- Evaluate of .
- Evaluate .
- Put brackets in to make the value .
Activity
Take a calculator. Type and press equals. Then type . Compare the two answers , the calculator follows BODMAS automatically.
In pairs, one person writes a long expression without brackets; the other inserts brackets to get a different value. Compare results.