Skip to content

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.

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

  • BIDMAS (Brackets, Indices, Division and Multiplication, Addition and Subtraction)
  • BODMAS (Brackets, Orders, Division and Multiplication, Addition and Subtraction)
  • PEMDAS (Parentheses, Exponents, Multiplication and Division, Addition) - this is more commonly used in the USA.

In this page, we’ll use BIDMAS.

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.

  • First, we do the multiplication: .
  • Then, we do the addition: .
  • Answer: .
  • First, we do the brackets: .
  • Then, we do the indices: .
  • Answer: .
  • First, we do the division: .
  • Then, we do the multiplication: .
  • Next, we do the subtraction: .
  • Finally, we do the addition: .
  • Answer: .
  • First, we do the brackets: .
  • Then, we do the indices: .
  • Next, we do the division: .
  • Finally, we do the addition: .
  • Answer: .
  • First, we do the brackets: .
  • Then, we do the division: .
  • Next, we do the multiplication: .
  • Answer: .