Variables are what turn arithmetic into algebra. A variable is just a letter that stands for a number
we don't know yet. Learning to translate words into equations is the single most important skill for
competition math β nearly every problem eventually becomes "solve for $x$."
π Key Concepts
What Is a Variable?
A variable is a letter (usually $x$, $y$, $n$) that represents an unknown number
An expression is a mathematical phrase with variables and numbers: $ 3x + 5 $
An equation says two expressions are equal: $ 3x + 5 = 17 $
To evaluate an expression, plug in the value of the variable
Example: If $ x = 4 $, then $ 3x + 5 = 3(4) + 5 = 12 + 5 = 17 $
Solving One-Step Equations
To solve for a variable, isolate it by doing the same thing to both sides:
If $ x + a = b $, subtract $a$: $ x = b - a $
If $ x - a = b $, add $a$: $ x = b + a $
If $ ax = b $, divide by $a$: $ x = \frac{b}{a} $
If $ \frac{x}{a} = b $, multiply by $a$: $ x = ab $
The golden rule: whatever you do to one side, you must do to the other side.
Solving Multi-Step Equations
For harder equations, follow this order:
Distribute if there are parentheses: $ 2(x + 3) \to 2x + 6 $
Combine like terms on each side separately
Get all $x$ terms on one side, all numbers on the other
Divide to get $x$ alone
Check your answer by plugging back in!
Translating Words to Equations
This is the most important skill. Here's the translation dictionary:
Trick: "5 less than $x$" = $ x - 5 $ (not $ 5 - x $). The "than" reverses the order.
β οΈ Common Mistake: When you have $ -2(x - 3) $, distribute the negative sign too!
It becomes $ -2x + 6 $, not $ -2x - 6 $. Every term inside gets multiplied by $-2$.
π‘ Key Insight: Always check your answer by plugging it back into the original equation.
In competitions, catching an arithmetic error this way can save you 1.5 points (AMC 10) or even more.
βοΈ Example Problems
π Example 1 (Multi-step equation)
Solve for $x$: $ 3(x - 2) + 5 = 2x + 1 $
Step 1: Distribute the 3 on the left side.
\[
3x - 6 + 5 = 2x + 1
\]
Step 2: Combine like terms ($-6 + 5 = -1$).
\[
3x - 1 = 2x + 1
\]
Step 3: Get $x$ terms on left, numbers on right. Subtract $2x$ from both sides, add 1 to both sides.