Two expressions are equivalent if they produce the same value for every possible input. The SAT loves to ask "which of these is equivalent to..." because there are many ways to write the same thing — and recognizing them is half the work of algebra. This note covers the standard moves and how to spot them under pressure.
What "equivalent" actually means
Two expressions are equivalent when they're the same function in different clothes. If $f(x) = 2(x + 3)$ and $g(x) = 2x + 6$, they're equivalent — try any $x$ you like, and both produce the same output. They're literally the same function.
The SAT tests this in three main ways:
Multiple choice: "Which of the following is equivalent to $\dots$?" with four options.
Standard form: "If $\dots = ax^2 + bx + c$, what is $a + b + c$?" — you have to expand or simplify first.
Conditional equivalence: "For what value of $k$ is $\dots$ equivalent to $\dots$?" — you set things equal and solve.
The plug-in test
Stuck choosing between options? Pick a simple value (like $x = 2$) and plug it into the original expression and each answer choice. The right answer matches. Avoid $x = 0$ and $x = 1$ — they often make multiple choices look correct due to coincidence.
The five core moves
Most SAT equivalence problems use one (or a chain of two) of these algebraic moves:
① Distribute
Multiply across parentheses. $a(b + c) = ab + ac$.
Which is equivalent to $\dfrac{x^7 \cdot x^3}{x^4}$?
Numerator: $x^7 \cdot x^3 = x^{10}$Then: $\dfrac{x^{10}}{x^4} = x^{10-4} = x^6$
⑤ Rationalize and simplify fractions
For complex algebraic fractions, you can often combine, factor, and cancel.
EXAMPLE
Simplify $\dfrac{x^2 - 9}{x - 3}$.
Numerator is a difference of squares: $x^2 - 9 = (x + 3)(x - 3)$.$\dfrac{(x + 3)(x - 3)}{x - 3} = x + 3$
(The expressions are equivalent for all $x \neq 3$.)
Sample SAT-style problems
SAMPLE 1 — STANDARD FORM EQUIVALENCE
The expression $(2x + 3)(x - 5)$ is equivalent to $ax^2 + bx + c$, where $a$, $b$, $c$ are constants. What is the value of $b$?
Expand using FOIL:$2x \cdot x + 2x \cdot (-5) + 3 \cdot x + 3 \cdot (-5)$$= 2x^2 - 10x + 3x - 15 = 2x^2 - 7x - 15$So $a = 2$, $b = -7$, $c = -15$.$b = \boxed{-7}$
SAMPLE 2 — CONDITIONAL EQUIVALENCE
For what value of $k$ is the expression $x^2 + 6x + k$ equivalent to $(x + 3)^2$?
Expand the right side: $(x + 3)^2 = x^2 + 6x + 9$.Match constant terms: $k = 9$.
SAMPLE 3 — RECOGNIZING A PATTERN
Which of the following is equivalent to $4x^2 - 49$?
(A) $(2x - 7)^2$
(B) $(2x + 7)(2x - 7)$
(C) $(4x - 7)(x + 7)$
(D) $2x(2x - 49)$
Both $4x^2 = (2x)^2$ and $49 = 7^2$ are perfect squares with a minus between them — difference of squares.$4x^2 - 49 = (2x + 7)(2x - 7)$Answer: (B)
Verify by plugging in $x = 1$: original gives $4 - 49 = -45$; option B gives $9 \cdot (-5) = -45$. ✓
SAMPLE 4 — CANCELLATION
The expression $\dfrac{2x^2 + 6x}{2x}$ is equivalent to which of the following for $x \neq 0$?
Factor the numerator: $2x^2 + 6x = 2x(x + 3)$.$\dfrac{2x(x + 3)}{2x} = x + 3$
Common error — invalid cancellation
You can only cancel things that are multiplied. You can simplify $\dfrac{2x(x+3)}{2x}$ to $x + 3$ because $2x$ is a factor of both. But you cannot simplify $\dfrac{2x + 3}{2}$ to $x + 3$ — the $2$ in the numerator is added to $3$, not multiplied. The correct simplification keeps both terms: $\dfrac{2x + 3}{2} = x + \dfrac{3}{2}$.