# Equivalent representations of polynomial and rational expressions

> AP Precalculus · AP Precalculus CED Unit 1
> Source: https://www.owlsprep.com/study/ap-precalculus-u1-equivalent-representations-of-polynomial-and/

This guide covers rewriting polynomials and rational expressions into equivalent forms, including factoring, simplifying with domain restrictions, polynomial division, and the binomial theorem via Pascal's triangle, all core skills tested heavily on the AP Precalculus exam.

**Prerequisites:** Basic definitions of polynomials and rational expressions; Factoring of low-degree quadratics and binomials; Domain rules for algebraic expressions

## Learning objectives

- Rewrite polynomials between equivalent expanded and factored forms over the reals
- Simplify rational expressions and correctly state all domain restrictions
- Rewrite improper rational expressions as a polynomial plus a proper rational via division
- Expand a binomial power $(a+b)^n$ for a positive integer $n$ using Pascal's triangle

## What Are Equivalent Representations?

Two expressions are equivalent if they produce the same output for every input in their shared domain. For polynomials and rational expressions, this means we can rewrite the expression in a different form (expanded, factored, decomposed, simplified) that preserves all values and domain rules, even if the algebraic structure looks different. This topic is Topic 1.11 in the AP Precalculus CED, makes up ~7-8% of total exam score, and appears in both multiple-choice and free-response sections.

> **tip**
>
> This is a foundational skill: the AP exam almost always requires rewriting expressions into a useful form to answer questions about roots, discontinuities, asymptotes, and end behavior. Mastery eliminates avoidable algebra errors that throw off most Unit 1 calculations.

## Equivalent Polynomial Forms: Expanding vs Factoring

Polynomials are most commonly written in two equivalent forms: standard (expanded) form and fully factored form over the reals.

$$a_nx^n + a_{n-1}x^{n-1} + ... + a_1x + a_0$$

Fully factored form is written as:

$$a(x-r_1)(x-r_2)...(x-r_k)$$

where $r_i$ are real roots, and any remaining factors are irreducible quadratics over the reals. We swap between forms depending on the question: standard form identifies leading coefficient and end behavior, while factored form makes finding roots and x-intercepts trivial. Key factoring steps always start with pulling out the greatest common factor (GCF), then use special products:

- Difference of squares: $a^2 - b^2 = (a-b)(a+b)$
- Sum/difference of cubes: $a^3 \pm b^3 = (a \pm b)(a^2 \mp ab + b^2)$
- Factoring quadratics of the form $ax^2 + bx + c$ into two linear binomials

**Worked example:** Rewrite $3x^3 - 3x^2 - 18x$ in fully factored equivalent form over the reals.

1. First, pull out the GCF of all terms: the GCF of 3, 3, 18 is 3, and the GCF of $x^3, x^2, x$ is $x$, so we get:
2. $$3x(x^2 - x - 6)$$
3. Next, factor the quadratic trinomial: we need two numbers that multiply to $-6$ and add to $-1$, which are $-3$ and $+2$.
4. This gives the final fully factored form:
5. $$3x(x-3)(x+2)$$
6. Verify equivalence by expanding back to the original expression:
7. $$3x[(x-3)(x+2)] = 3x(x^2 -x -6) = 3x^3 - 3x^2 - 18x$$

> **Exam tip:** Always factor out the GCF before attempting to factor higher-degree polynomials; stopping at $3(x^3 - x^2 - 6x)$ will be marked as incomplete factoring on the AP exam.

## Simplifying Rational Expressions and Domain Restrictions

A rational expression is a ratio of two polynomials $\frac{P(x)}{Q(x)}$. When simplifying to an equivalent form, we cancel common factors between the numerator and denominator, but we must preserve the original domain: any input that made the original denominator zero remains excluded, even if it makes the simplified expression defined.

> **warning**
>
> For example, $\frac{(x-2)(x+3)}{x-2}$ is *not* equivalent to $x+3$; it is only equivalent if we add the restriction $x \neq 2$, since $x=2$ was undefined in the original expression. This is heavily tested because it distinguishes between holes and vertical asymptotes.

**Worked example:** Write $\frac{x^2 - 7x + 12}{x^2 - 9}$ as an equivalent simplified rational expression, with all domain restrictions.

1. Factor numerator and denominator completely: numerator $x^2 -7x +12 = (x-3)(x-4)$, denominator $x^2 -9 = (x-3)(x+3)$.
2. Find all excluded values from the original domain by setting the original denominator equal to zero: $(x-3)(x+3) = 0$ gives $x=3$ and $x=-3$, both excluded.
3. Cancel the common non-zero factor $(x-3)$, which is valid for all $x \neq 3$.
4. The equivalent simplified expression is:
5. $$\frac{x-4}{x+3}, \quad x \neq 3, x \neq -3$$

> **Exam tip:** Always find all excluded values from the original denominator before canceling common factors; listing only restrictions from the simplified denominator will lose points on FRQ.

## Polynomial Division for Improper Rational Forms

An improper rational expression has a numerator with degree greater than or equal to the degree of the denominator. We can rewrite any improper rational expression as an equivalent sum of a polynomial and a proper rational expression (where the degree of the remainder is less than the degree of the denominator) using polynomial long division, or synthetic division for linear divisors of the form $(x - c)$.

**Remainder Factor Theorem** — When dividing a polynomial $P(x)$ by $(x - c)$, the remainder equals $P(c)$. If the remainder is zero, $(x - c)$ is a factor of $P(x)$, so it can be factored out to get a lower-degree equivalent polynomial.

*Example:* If dividing $P(x)$ by $(x-2)$ gives remainder 0, then $P(2)=0$ and $(x-2)$ is a factor of $P(x)$.

This form is used to find slant asymptotes of rational functions and simplify higher-degree polynomials when one root is known.

**Worked example:** Rewrite $\frac{2x^3 - 4x^2 - 7x - 5}{x - 3}$ as an equivalent expression in polynomial plus proper rational form, with domain restrictions.

1. Use synthetic division for the linear divisor $(x - 3)$: write the coefficients of the numerator: $2, -4, -7, -5$, and root $3$.
2. Bring down the leading coefficient $2$. Multiply by $3$ to get $6$, add to $-4$ to get $2$. Multiply $2$ by $3$ to get $6$, add to $-7$ to get $-1$. Multiply $-1$ by $3$ to get $-3$, add to $-5$ to get $-8$.
3. The quotient is $2x^2 + 2x - 1$, and the remainder is $-8$, so the equivalent form is:
4. $$2x^2 + 2x - 1 - \frac{8}{x - 3}, \quad x \neq 3$$
5. Verify equivalence: $(x-3)(2x^2 + 2x - 1) = 2x^3 -4x^2 -7x +3$, subtract $8$ to get the original numerator, which matches.

> **Exam tip:** Synthetic division only works for linear divisors of the form $(x - c)$; always use long division for higher-degree divisors to avoid calculation errors.

## The Binomial Theorem via Pascal's Triangle

The binomial theorem gives a fast way to expand a power of a binomial, $(a+b)^n$, into standard polynomial form when $n$ is a positive integer. Instead of multiplying $(a+b)$ by itself $n$ times, we read the coefficients of the expansion directly from row $n$ of Pascal's triangle.

Pascal's triangle is built by starting and ending every row with 1, and making each interior entry the sum of the two entries directly above it:

$$\begin{array}{c} 1 \\ 1 \quad 1 \\ 1 \quad 2 \quad 1 \\ 1 \quad 3 \quad 3 \quad 1 \\ 1 \quad 4 \quad 6 \quad 4 \quad 1 \end{array}$$

Counting rows from $n=0$ at the top, row $n$ gives the coefficients of $(a+b)^n$ from the $a^n$ term down to the $b^n$ term. From one term to the next the exponent of $a$ decreases by 1 while the exponent of $b$ increases by 1, and the two exponents in every term add up to $n$:

$$(a+b)^4 = a^4 + 4a^3b + 6a^2b^2 + 4ab^3 + b^4$$

> **tip**
>
> The row you need is the one whose second entry equals $n$. To expand $(a+b)^4$, use the row $1, 4, 6, 4, 1$. Each row is symmetric, so you only have to remember half of it.

**Worked example:** Use Pascal's triangle to expand $(x + 2)^4$ into standard form.

1. Since $n = 4$, take the coefficients from row 4 of Pascal's triangle:
2. $$1, \quad 4, \quad 6, \quad 4, \quad 1$$
3. Write the terms with $a = x$ decreasing in power and $b = 2$ increasing in power:
4. $$x^4 + 4x^3(2) + 6x^2(2)^2 + 4x(2)^3 + (2)^4$$
5. Simplify each power of 2 and combine:
6. $$x^4 + 8x^3 + 24x^2 + 32x + 16$$

> **Exam tip:** When the binomial is a difference such as $(x-2)^4$, substitute $b = -2$ so the term signs alternate; the Pascal's-triangle coefficients themselves do not change.

## Concept Check

**Check your understanding**

Test your understanding with this AP-style multiple choice question:

1. Which of the following is an equivalent simplified form of $\frac{4x^2 - 16x + 12}{x^2 - 5x + 6}$, with correct domain restrictions?

   - A. $4$, with $x \neq 2$ and $x \neq 3$
   - B. $4(x - 1)$, with $x \neq 2$ and $x \neq 3$
   - C. $4$, with no domain restrictions
   - D. $\frac{4}{x + 1}$, with $x \neq -1, 2, 3$

   *Why:* Factor numerator: $4(x-1)(x-3)$, denominator: $(x-2)(x-3)$. Original denominator is zero at $x=2$ and $x=3$, so both are excluded. Cancel $(x-3)$ to get $4$, with both restrictions, which matches option A.

## Common pitfalls

- **Wrong:** Writing $\frac{(x-4)(x+5)}{x-4} = x+5$ with no domain restriction
  - Why it fails: Students assume canceling makes the expressions identical everywhere, forgetting $x=4$ was undefined in the original expression
  - Correct: Always list all domain restrictions from the original denominator before simplifying, so the equivalent expression is $x+5, x \neq 4$
- **Wrong:** Factoring $2x^2 - 8$ as $2(x^2 - 4)$ and stopping, calling that fully factored
  - Why it fails: Students forget difference of squares can be factored further after pulling out the GCF
  - Correct: Continue factoring until all linear and irreducible quadratic factors are obtained, so the fully factored form is $2(x-2)(x+2)$
- **Wrong:** Using synthetic division to divide $3x^3 + 2x^2 - x + 1$ by $x^2 - 4$
  - Why it fails: Students memorize synthetic division as the 'easy division method' without remembering it only works for linear divisors
  - Correct: Use polynomial long division for any divisor with degree greater than 1
- **Wrong:** Claiming $x^2 + 4$ factors into $(x+2i)(x-2i)$ for an AP Precalculus question asking for equivalent form over the reals
  - Why it fails: Students confuse factoring over complex numbers vs factoring over the reals, which is what AP almost always asks for
  - Correct: Leave irreducible quadratics (with negative discriminant) as is when factoring over the reals
- **Wrong:** Forgetting to add a domain restriction after polynomial division of $\frac{P(x)}{x - c}$
  - Why it fails: Students think domain restrictions only apply after canceling common factors, not after division
  - Correct: Any time you rewrite a rational expression, carry over all restrictions on $x$ from the original denominator

## Cheatsheet

| Category | Formula/Rule | Notes |
| --- | --- | --- |
| Difference of Squares | $a^2 - b^2 = (a-b)(a+b)$ | Sum of squares $a^2 + b^2$ is irreducible over the reals |
| Difference of Cubes | $a^3 - b^3 = (a-b)(a^2 + ab + b^2)$ | Quadratic factor is always irreducible over the reals |
| Sum of Cubes | $a^3 + b^3 = (a+b)(a^2 - ab + b^2)$ | Quadratic factor is always irreducible over the reals |
| Equivalent Simplified Rationals | $\frac{P(x)A(x)}{Q(x)A(x)} = \frac{P(x)}{Q(x)}, A(x) \neq 0$ | All roots of the original denominator remain excluded, even after canceling $A(x)$ |
| Remainder Theorem | Divide $P(x)$ by $(x-c)$ → Remainder $= P(c)$ | If remainder $=0$, $(x-c)$ is a factor of $P(x)$ |
| Improper Rational Rewrite | $\frac{P(x)}{Q(x)} = S(x) + \frac{R(x)}{Q(x)}$ | $\deg R < \deg Q$; use synthetic division for linear $Q(x)$, long division otherwise |
| Binomial Theorem (Pascal's Triangle) | $(a+b)^n$: coefficients are row $n$ of Pascal's triangle | Exponent of $a$ falls $n \to 0$; exponent of $b$ rises $0 \to n$; each entry is the sum of the two above it |

## What's next

This topic is the foundational prerequisite for all upcoming work on polynomial and rational functions in Unit 1 of AP Precalculus. Next, you will apply these equivalent representation techniques to identify key features of polynomial and rational function graphs, including roots, intercepts, holes, vertical asymptotes, and end behavior. Without mastering the ability to rewrite polynomials and rationals into equivalent forms, you will not be able to correctly classify discontinuities or find key features on exam questions, which make up a large portion of Unit 1 scoring. This topic also introduces the binomial theorem via Pascal's triangle, a tool for expanding binomial powers that supports work with polynomials throughout the AP Precalculus course.

- [Transformations of functions](https://www.owlsprep.com/study/ap-precalculus-u1-transformations-of-functions/)
- [Function model selection and assumption articulation](https://www.owlsprep.com/study/ap-precalculus-u1-function-model-selection-and-assumption/)
- [Function model construction and application](https://www.owlsprep.com/study/ap-precalculus-u1-function-model-construction-and-application/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-precalculus-u1-equivalent-representations-of-polynomial-and/
