Order of Operations

Arithmetic
rule

Also known as: PEMDAS, BODMAS, operator precedence

Grade 3-5

View on concept map

The agreed-upon sequence for evaluating expressions: Parentheses, Exponents, Multiplication/Division (left to right), Addition/Subtraction (left to right). Required for unambiguous communication in math and programming.

This concept is covered in depth in our order of operations and math properties, with worked examples, practice problems, and common mistakes.

Definition

The agreed-upon sequence for evaluating expressions: Parentheses, Exponents, Multiplication/Division (left to right), Addition/Subtraction (left to right).

๐Ÿ’ก Intuition

Without rules, 2 + 3 \times 4 could mean 20 or 14. We agree to multiply first: 14.

๐ŸŽฏ Core Idea

Convention ensures everyone gets the same answer from the same expression.

Example

2 + 3 \times 4 = 2 + 12 = 14 not (2+3) \times 4 = 20

Formula

Parentheses \to Exponents \to Multiplication/Division (left to right) \to Addition/Subtraction (left to right)

Notation

PEMDAS (or BODMAS): Parentheses, Exponents, Multiplication/Division, Addition/Subtraction

๐ŸŒŸ Why It Matters

Required for unambiguous communication in math and programming.

๐Ÿ’ญ Hint When Stuck

Try breaking the problem into smaller steps -- compute each operation one at a time following PEMDAS order.

Formal View

\text{eval}(E) \text{ is defined recursively: parenthesized sub-expressions first, then } \wedge, \text{ then } \{\times, \div\} \text{ left-to-right, then } \{+, -\} \text{ left-to-right}

๐Ÿšง Common Stuck Point

Forgetting that \times and \div have equal precedence (go left to right).

โš ๏ธ Common Mistakes

  • Performing operations left to right without considering precedence rules
  • Forgetting that parentheses must be evaluated first, before any other operation
  • Treating multiplication as higher priority than division โ€” they share equal precedence and go left to right

Frequently Asked Questions

What is Order of Operations in Math?

The agreed-upon sequence for evaluating expressions: Parentheses, Exponents, Multiplication/Division (left to right), Addition/Subtraction (left to right).

What is the Order of Operations formula?

Parentheses \to Exponents \to Multiplication/Division (left to right) \to Addition/Subtraction (left to right)

When do you use Order of Operations?

Try breaking the problem into smaller steps -- compute each operation one at a time following PEMDAS order.

How Order of Operations Connects to Other Ideas

To understand order of operations, you should first be comfortable with addition, subtraction, multiplication and division. Once you have a solid grasp of order of operations, you can move on to expressions and equations.

Want the Full Guide?

This concept is explained step by step in our complete guide:

Commutative, Associative, and Distributive Properties โ†’

Visualization

Static

Visual representation of Order of Operations