Order of operations

The order of operations tells us which operations (e.g. addition, multiplication, powers) to do first when finding the value of an expression.

Abbreviations

There are lots of abbreviations to remember the order of operations. The most common ones are:

In this page, we’ll use BIDMAS.

The order

Whenever we evaluate an expression, we should do it in this order:

  1. Brackets: Anything inside brackets (parentheses) should be done first.
  2. Indices: We then do any powers or roots (e.g. squares, square roots).
  3. division and multiplication:
  4. Addition and subtraction

Note: When we have multiple operations of the same rank (e.g. both division and multiplication), we do them from left to right.

Examples

Example: Evaluate 3 + 4 \times 2

Example: Evaluate (2 + 3)^2

Example: Evaluate 10 - 4 \div 2 + 3 \times 2

Example: Evaluate 5 + (6 - 2)^2 \div 2

Example: Evaluate 8 \div 2(2 + 2)

flashcards

QuestionAnswer
What is the order of operations?The order of operations tells us which operations (e.g. addition, multiplication, powers) to do first when finding the value of an expression.
What does BIDMAS stand for?Brackets, Indices, division and multiplication, Addition and subtraction.
What does BODMAS stand for?Brackets, Orders, division and multiplication, Addition and subtraction.
What does PEMDAS stand for?Parentheses, Exponents, multiplication and division, Addition.
What is done first in the order of operations?Brackets (parentheses).
What is done second in the order of operations?Indices (powers or roots like squares, square roots).
What is the rule when you have multiple operations of the same rank (e.g. both division and multiplication)?Do them from left to right.
Evaluate: 3 + 4 \times 2First, multiplication: 4 \times 2 = 8.
Then, addition: 3 + 8 = 11.
Answer: 11.
Evaluate: (2 + 3)^2First, brackets: 2 + 3 = 5.
Then, indices: 5^2 = 25.
Answer: 25.
Evaluate: 10 - 4 \div 2 + 3 \times 2First, division: 4 \div 2 = 2.
Then, multiplication: 3 \times 2 = 6.
Next, subtraction: 10 - 2 = 8.
Finally, addition: 8 + 6 = 14.
Answer: 14.
Evaluate: 5 + (6 - 2)^2 \div 2First, brackets: 6 - 2 = 4.
Then, indices: 4^2 = 16.
Next, division: 16 \div 2 = 8.
Finally, addition: 5 + 8 = 13.
Answer: 13.
Evaluate: 8 \div 2(2 + 2)First, brackets: 2 + 2 = 4.
Then, division: 8 \div 2 = 4.
Next, multiplication: 4 \times 4 = 16.
Answer: 16.