Order of Operations (PEMDAS)
Order of Operations is the set of rules that tells you which calculations to do first when an expression has more than one operation. The acronym PEMDAS helps you remember the order: Parentheses, Exponents, Multiplication and Division (left to right), then Addition and Subtraction (left to right).
The order of operations is a convention used in mathematics to ensure that any numerical expression is evaluated consistently and yields a single, unambiguous result. Operations are performed in the following hierarchy: (1) expressions inside Parentheses or other grouping symbols, (2) Exponents and roots, (3) Multiplication and Division from left to right, and (4) Addition and Subtraction from left to right. Multiplication does not take priority over division, nor does addition take priority over subtraction — operations at the same level are simply worked from left to right.
Worked Example
Problem: Evaluate:
Parentheses: Simplify inside the parentheses first.
Exponents: Next, evaluate the exponent.
Multiplication and Division (left to right): Multiply 4 × 16, then divide the result by 8. Work left to right.
Addition: Finally, add.
Answer: The value of the expression is .
Why It Matters
Without a standard order of operations, the same expression could produce different answers depending on who reads it. Engineers, programmers, scientists, and accountants all rely on these rules so that formulas and calculations mean the same thing to everyone. Whenever you type a formula into a spreadsheet or calculator, the software follows PEMDAS behind the scenes.
Common Mistakes
Mistake: Thinking multiplication always comes before division (or addition always before subtraction) because of the letter order in PEMDAS.
Correction: Multiplication and division are equal in priority — you handle them left to right. The same goes for addition and subtraction. For example, in , you divide first (getting 4) and then multiply (getting 16), not the other way around.
Mistake: Ignoring nested parentheses and working from the outside in.
Correction: Always simplify the innermost grouping symbols first, then work outward. For example, in , compute first, then , and finally .
