Study Guide

Equivalent representations of polynomial and rational expressions

AP PrecalculusΒ· AP Precalculus CED β€” Polynomial and Rational FunctionsΒ· 14 min read

1. What Are Equivalent Representations?β˜…β˜…β˜†β˜†β˜†β± 3 min

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.

2. Equivalent Polynomial Forms: Expanding vs Factoringβ˜…β˜…β˜†β˜†β˜†β± 4 min

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

anxn+anβˆ’1xnβˆ’1+...+a1x+a0a_nx^n + a_{n-1}x^{n-1} + ... + a_1x + a_0

Fully factored form is written as:

a(xβˆ’r1)(xβˆ’r2)...(xβˆ’rk)a(x-r_1)(x-r_2)...(x-r_k)

where 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:

  • Sum/difference of cubes:

  • Factoring quadratics of the form into two linear binomials

πŸ“ Worked Example

Rewrite in fully factored equivalent form over the reals.

  1. 1

    First, pull out the GCF of all terms: the GCF of 3, 3, 18 is 3, and the GCF of is , so we get:

  2. 2
    3x(x2βˆ’xβˆ’6)3x(x^2 - x - 6)
  3. 3

    Next, factor the quadratic trinomial: we need two numbers that multiply to and add to , which are and .

  4. 4

    This gives the final fully factored form:

  5. 5
    3x(xβˆ’3)(x+2)3x(x-3)(x+2)
  6. 6

    Verify equivalence by expanding back to the original expression:

  7. 7
    3x[(xβˆ’3)(x+2)]=3x(x2βˆ’xβˆ’6)=3x3βˆ’3x2βˆ’18x3x[(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 will be marked as incomplete factoring on the AP exam.

3. Simplifying Rational Expressions and Domain Restrictionsβ˜…β˜…β˜…β˜†β˜†β± 4 min

A rational expression is a ratio of two polynomials . 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.

πŸ“ Worked Example

Write as an equivalent simplified rational expression, with all domain restrictions.

  1. 1

    Factor numerator and denominator completely: numerator , denominator .

  2. 2

    Find all excluded values from the original domain by setting the original denominator equal to zero: gives and , both excluded.

  3. 3

    Cancel the common non-zero factor , which is valid for all .

  4. 4

    The equivalent simplified expression is:

  5. 5
    xβˆ’4x+3,xβ‰ 3,xβ‰ βˆ’3\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.

4. Polynomial Division for Improper Rational Formsβ˜…β˜…β˜…β˜†β˜†β± 5 min

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 .

πŸ“˜ Definition

Remainder Factor Theorem

When dividing a polynomial by , the remainder equals . If the remainder is zero, is a factor of , so it can be factored out to get a lower-degree equivalent polynomial.

Example:

If dividing by gives remainder 0, then and is a factor of .

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

πŸ“ Worked Example

Rewrite as an equivalent expression in polynomial plus proper rational form, with domain restrictions.

  1. 1

    Use synthetic division for the linear divisor : write the coefficients of the numerator: , and root .

  2. 2

    Bring down the leading coefficient . Multiply by to get , add to to get . Multiply by to get , add to to get . Multiply by to get , add to to get .

  3. 3

    The quotient is , and the remainder is , so the equivalent form is:

  4. 4
    2x2+2xβˆ’1βˆ’8xβˆ’3,xβ‰ 32x^2 + 2x - 1 - \frac{8}{x - 3}, \quad x \neq 3
  5. 5

    Verify equivalence: , subtract to get the original numerator, which matches.

Exam tip:

Synthetic division only works for linear divisors of the form ; always use long division for higher-degree divisors to avoid calculation errors.

5. The Binomial Theorem via Pascal's Triangleβ˜…β˜…β˜…β˜†β˜†β± 4 min

The binomial theorem gives a fast way to expand a power of a binomial, , into standard polynomial form when is a positive integer. Instead of multiplying by itself times, we read the coefficients of the expansion directly from row 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:

111121133114641\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 at the top, row gives the coefficients of from the term down to the term. From one term to the next the exponent of decreases by 1 while the exponent of increases by 1, and the two exponents in every term add up to :

(a+b)4=a4+4a3b+6a2b2+4ab3+b4(a+b)^4 = a^4 + 4a^3b + 6a^2b^2 + 4ab^3 + b^4
πŸ“ Worked Example

Use Pascal's triangle to expand into standard form.

  1. 1

    Since , take the coefficients from row 4 of Pascal's triangle:

  2. 2
    1,4,6,4,11, \quad 4, \quad 6, \quad 4, \quad 1
  3. 3

    Write the terms with decreasing in power and increasing in power:

  4. 4
    x4+4x3(2)+6x2(2)2+4x(2)3+(2)4x^4 + 4x^3(2) + 6x^2(2)^2 + 4x(2)^3 + (2)^4
  5. 5

    Simplify each power of 2 and combine:

  6. 6
    x4+8x3+24x2+32x+16x^4 + 8x^3 + 24x^2 + 32x + 16

Exam tip:

When the binomial is a difference such as , substitute so the term signs alternate; the Pascal's-triangle coefficients themselves do not change.

6. Concept Checkβ˜…β˜…β˜…β˜†β˜†β± 2 min

βœ“ Quick check

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

  1. Which of the following is an equivalent simplified form of , with correct domain restrictions?

    • A. , with and

    • B. , with and

    • C. , with no domain restrictions

    • D. , with

    Reveal answer
    A β€”

    Factor numerator: , denominator: . Original denominator is zero at and , so both are excluded. Cancel to get , with both restrictions, which matches option A.

7. Common Pitfalls

Wrong move:

Writing with no domain restriction

Why:

Students assume canceling makes the expressions identical everywhere, forgetting was undefined in the original expression

Correct move:

Always list all domain restrictions from the original denominator before simplifying, so the equivalent expression is

Wrong move:

Factoring as and stopping, calling that fully factored

Why:

Students forget difference of squares can be factored further after pulling out the GCF

Correct move:

Continue factoring until all linear and irreducible quadratic factors are obtained, so the fully factored form is

Wrong move:

Using synthetic division to divide by

Why:

Students memorize synthetic division as the 'easy division method' without remembering it only works for linear divisors

Correct move:

Use polynomial long division for any divisor with degree greater than 1

Wrong move:

Claiming factors into for an AP Precalculus question asking for equivalent form over the reals

Why:

Students confuse factoring over complex numbers vs factoring over the reals, which is what AP almost always asks for

Correct move:

Leave irreducible quadratics (with negative discriminant) as is when factoring over the reals

Wrong move:

Forgetting to add a domain restriction after polynomial division of

Why:

Students think domain restrictions only apply after canceling common factors, not after division

Correct move:

Any time you rewrite a rational expression, carry over all restrictions on from the original denominator

8. Quick Reference Cheatsheet

Category

Formula/Rule

Notes

Difference of Squares

Sum of squares is irreducible over the reals

Difference of Cubes

Quadratic factor is always irreducible over the reals

Sum of Cubes

Quadratic factor is always irreducible over the reals

Equivalent Simplified Rationals

All roots of the original denominator remain excluded, even after canceling

Remainder Theorem

Divide by β†’ Remainder

If remainder , is a factor of

Improper Rational Rewrite

; use synthetic division for linear , long division otherwise

Binomial Theorem (Pascal's Triangle)

: coefficients are row of Pascal's triangle

Exponent of falls ; exponent of rises ; 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.