Arithmetic is the language of all mathematics. In competition math, you won't get points for showing
arithmetic steps β but speed and accuracy here directly determine how much time you have for harder problems.
Mastering order of operations and mental math shortcuts is one of the highest-ROI investments you can make.
π Key Concepts
Order of Operations (PEMDAS/BODMAS)
Every competition follows the same priority rules. Compute in this order:
Parentheses / Brackets β innermost first
Exponents / Orders β powers and roots
Multiplication & Division β equal priority, left to right
Addition & Subtraction β equal priority, left to right
Fraction bars act like parentheses: the entire numerator is grouped, and the entire denominator is grouped.
For example, in $ rac{3+5}{2} $, you add before dividing.
Arithmetic Properties
These properties let you rearrange calculations to make them easier:
Commutative: $ a + b = b + a $ and $ a \times b = b \times a $
Associative: $ (a+b)+c = a+(b+c) $ and $ (a \times b) \times c = a \times (b \times c) $
Distributive: $ a(b + c) = ab + ac $ β the most useful for competition math
The distributive property works in reverse too: $ ab + ac = a(b+c) $. This is called factoring out
or factoring by grouping, and it's the #1 mental math shortcut.
Negative Numbers
Key sign rules to memorize:
Adding a negative = subtracting: $ a + (-b) = a - b $
Subtracting a negative = adding: $ a - (-b) = a + b $
The most common mistake: distributing a negative sign. Remember that $ -(a - b) = -a + b $, not $ -a - b $.
The negative applies to every term inside the parentheses.
β οΈ Common Mistake: Don't do addition before subtraction just because "A" comes before "S" in PEMDAS.
They have equal priority β always go left to right. Same with multiplication and division.
π‘ Key Insight: Before computing anything, look for common factors or ways to rearrange.
90% of competition arithmetic problems are designed to be solved faster with the distributive property
than with brute force.
βοΈ Example Problems
π Example 1 (PEMDAS with nested parentheses)
Calculate: $ 3 + 4 \times 2 - (6 - 3)^2 $
Step 1: Parentheses first: $ 6 - 3 = 3 $
Now we have: $ 3 + 4 \times 2 - 3^2 $
Step 2: Exponent: $ 3^2 = 9 $
Now we have: $ 3 + 4 \times 2 - 9 $
Step 3: Multiplication: $ 4 \times 2 = 8 $
Now we have: $ 3 + 8 - 9 $
Step 4: Add and subtract left to right: $ 3 + 8 = 11 $, then $ 11 - 9 = 2 $
Answer: 2
π Example 2 (Distributive Property / Mental Math)
Calculate: $ 37 \times 99 + 37 $
Brute force way: $ 37 \times 99 = 3663 $, then $ 3663 + 37 = 3700 $. Slow and error-prone.