SAT Math · Algebra

Equivalent Expressions

SAT-M-EQV-01
Teaching Notes
v1 · 2026.05

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:

  1. Multiple choice: "Which of the following is equivalent to $\dots$?" with four options.
  2. Standard form: "If $\dots = ax^2 + bx + c$, what is $a + b + c$?" — you have to expand or simplify first.
  3. 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$.

EXAMPLE
Expand $3(2x - 5)$. $3 \cdot 2x - 3 \cdot 5 = 6x - 15$
EXAMPLE — TWO BINOMIALS (FOIL)
Expand $(x + 4)(x - 2)$. First terms: $x \cdot x = x^2$ Outer: $x \cdot (-2) = -2x$ Inner: $4 \cdot x = 4x$ Last: $4 \cdot (-2) = -8$ Combine: $x^2 + 2x - 8$

② Factor — the reverse of distribute

Pull out a common factor or recognize a pattern. Three patterns the SAT loves:

Common factor

$$ab + ac = a(b + c)$$
Pull out the largest thing all terms share.

Difference of squares

$$a^2 - b^2 = (a + b)(a - b)$$
Two perfect squares with a minus between them.

Perfect square trinomial

$$a^2 + 2ab + b^2 = (a + b)^2$$
First and last terms are squares; middle term is twice their product.
EXAMPLE — DIFFERENCE OF SQUARES
Factor $9x^2 - 25$. Notice: $9x^2 = (3x)^2$ and $25 = 5^2$. $9x^2 - 25 = (3x + 5)(3x - 5)$
EXAMPLE — PERFECT SQUARE
Factor $x^2 - 8x + 16$. $x^2$ and $16 = 4^2$ are squares; middle term $8x = 2 \cdot 4 \cdot x$. ✓ $x^2 - 8x + 16 = (x - 4)^2$

③ Combine like terms

Add or subtract terms with the same variable part. $3x$ and $5x$ are like terms; $3x$ and $5x^2$ are not.

EXAMPLE
Simplify $4x + 3 - 2x + 7 - x^2 + 5x^2$. $x^2$ terms: $-x^2 + 5x^2 = 4x^2$ $x$ terms: $4x - 2x = 2x$ Constants: $3 + 7 = 10$ Result: $4x^2 + 2x + 10$

④ Apply exponent rules

Same-base exponents combine cleanly. Memorize:

Multiplying same base

$$x^a \cdot x^b = x^{a+b}$$

Dividing same base

$$\frac{x^a}{x^b} = x^{a-b}$$

Power of a power

$$(x^a)^b = x^{ab}$$

Negative exponent

$$x^{-a} = \frac{1}{x^a}$$
EXAMPLE
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}$.
SAT-M-EQV-01 · Equivalent Expressions Shu's Tutoring · Notes Library