Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Equivalent Representations of Polynomial and Rational Expressions

Lesson ~12 min read 8 MCQs

In simple terms: In simple terms, this topic is about rewriting functions in different ways to easily find key features like intercepts, holes, and end behavior, using tools like factoring, long division, and the binomial theorem.

Why this matters

Imagine you and your friend, Priya, are building a custom gaming PC. You have a detailed list of all the parts: the CPU, the graphics card, the motherboard, the power supply, each with its own price. Adding up those prices gives you the total cost. That's one way to represent the cost—a long list of individual items.

But what if you wanted to compare your build to a pre-built PC from a store? The store just gives you one final price, like $1,800. To compare, Priya takes your long list and calculates the total. Now you have two numbers that look the same: your total cost and the store's price.

Math works the same way. A function can be written as a long, expanded expression (the store's final price) or as a set of factored parts (your component list). Neither is "better"—they just tell you different things at a glance. Today, we'll learn how to switch between these forms and why you'd want to.

A polynomial in standard form (blue) and factored form (orange) are identical.

Concept overview

flowchart TD
    A[Start with Rational Function f(x)/g(x)] --> B{Degree of f > Degree of g?};
    B -- Yes --> C{Degree f = Degree g + 1?};
    B -- No --> D[Horizontal Asymptote at y=0];
    C -- Yes --> E[Use Polynomial Long Division];
    E --> F[Quotient q(x) is the Slant Asymptote];
    C -- No --> G[No Slant or Horizontal Asymptote];
    A --> H{Can you factor f(x) and g(x)?};
    H -- Yes --> I[Factor f(x) and g(x)];
    I --> J{Common factors (x-c)?};
    J -- Yes --> K[Hole at x=c];
    J -- No --> L[No Holes];
    I --> M[Remaining factors in g(x) are Vertical Asymptotes];
This flowchart outlines the decision-making process for analyzing a rational function. It shows how to determine the existence of horizontal or slant asymptotes based on the degrees of the numerator and denominator, and how factoring reveals holes and vertical asymptotes.

Core explanation

Hey everyone, it’s Saavi. Let's dive into one of the most foundational skills in Precalculus: seeing the same function in different ways. It’s like having different pairs of glasses; one pair helps you see things far away, and another helps you see things up close.

Standard Form vs. Factored Form: Two Sides of the Same Coin

A function, whether it's a polynomial or a rational function, can be written in multiple equivalent ways. The two most common are standard form and factored form.

Think of this polynomial: p(x) = x³ − 2x² − 3x. This is its standard form, written in descending order of powers.

  • What it's good for: This form makes two things incredibly easy to spot.
    1. 1
      The y-intercept
      Just set x=0. Everything with an x disappears, leaving you with the constant term. Here, the constant is 0, so the y-intercept is (0, 0).
    2. 2
      End Behavior
      The leading term, , tells you everything. Since the degree (3) is odd and the leading coefficient (1) is positive, you know the graph falls to the left and rises to the right.

Now, let's look at the same function in factored form: p(x) = x(x − 3)(x + 1).

Standard form reveals y-intercept and end behavior; factored form reveals x-intercepts.
  • What it's good for: This form is all about the zeros, or the x-intercepts.
    • To find the zeros, you just set p(x) = 0 and see what x-values make the equation true. Because the factors are multiplied, if any single factor is zero, the whole thing is zero.
    • x = 0
    • x - 3 = 0 --> x = 3
    • x + 1 = 0 --> x = -1
    • Boom. Your x-intercepts are at (0, 0), (3, 0), and (-1, 0). Trying to find those from standard form would require a lot of guessing or the Rational Root Theorem.

The same idea applies to rational functions. Consider r(x) = (2x² − 8) / (x² − 3x + 2).

  • Standard Form
    Great for finding the horizontal asymptote (since the degrees of the top and bottom are equal, it's the ratio of leading coefficients, y = 2/1 = 2) and the y-intercept (set x=0 to get -8/2 = -4).
  • Factored Form
    Let's factor the numerator and denominator. r(x) = (2(x² − 4)) / ((x − 2)(x − 1)) r(x) = (2(x − 2)(x + 2)) / ((x − 2)(x − 1))
Factored rational functions reveal holes, asymptotes, and intercepts.

This form is a goldmine.

Switching between these forms is the key to unlocking all the information needed to sketch a graph or solve a problem.

Polynomial Long Division: The Workhorse

So, how do we switch between forms when factoring isn't obvious? For rational functions, one of our most powerful tools is polynomial long division. It's exactly like the long division you learned in elementary school, just with variables.

Remember dividing 13 by 4? You get 3 with a remainder of 1. You write this as 13/4 = 3 + 1/4.

Polynomial division follows the same structure: f(x) / g(x) = q(x) + r(x) / g(x) Where f(x) is the dividend, g(x) is the divisor, q(x) is the quotient, and r(x) is the remainder.

Let's say we need to divide (2x³ + 3x² - 5) by (x + 2).

        2x²   - x    + 2      <-- Quotient q(x)
      ___________________
x + 2 | 2x³ + 3x² + 0x - 5    <-- Notice the 0x placeholder!
      -(2x³ + 4x²)
      ___________________
            -x² + 0x
          -(-x² - 2x)
          ___________________
                  2x - 5
                -(2x + 4)
                _________
                      -9     <-- Remainder r(x)

So, we can rewrite our original expression as: (2x³ + 3x² - 5) / (x + 2) = 2x² - x + 2 - 9/(x+2)

Why is this useful? If the degree of the numerator is exactly one greater than the denominator, the quotient q(x) will be a line, mx+b. This line is the slant asymptote of the rational function. The remainder part, r(x)/g(x), becomes insignificant as x gets huge, so the function gets closer and closer to the line q(x).

The Binomial Theorem: A Powerful Shortcut

What if you need to go from factored form to standard form for something like p(x) = (x + 2)⁴? You could multiply (x+2)(x+2)(x+2)(x+2)... but that's tedious and a recipe for mistakes.

Instead, we use the Binomial Theorem. It's a formula for expanding expressions of the form (a+b)ⁿ. The coefficients in the expansion come from a beautiful pattern called Pascal's Triangle.

To build Pascal's Triangle, start with 1. Each new row starts and ends with 1, and the numbers in between are the sum of the two numbers directly above them.

Row 0: 1 Row 1: 1 1 Row 2: 1 2 1 Row 3: 1 3 3 1 Row 4: 1 4 6 4 1 <-- This is the row we need for n=4.

To expand (x + 2)⁴, we use the coefficients from Row 4: 1, 4, 6, 4, 1. The pattern is: 1*(x⁴)*(2⁰) + 4*(x³)*(2¹) + 6*(x²)*(2²) + 4*(x¹)*(2³) + 1*(x⁰)*(2⁴)

Now, simplify each term: 1*x⁴*1 + 4*x³*2 + 6*x²*4 + 4*x*8 + 1*1*16 = x⁴ + 8x³ + 24x² + 32x + 16

And there you have it. We expanded (x+2)⁴ into standard form in one clean process.

Worked examples

Let's put these ideas into practice. It's one thing to see the theory; it's another to do it yourself.

Example 1

Polynomial Long Division for a Slant Asymptote

Problem: Find the equation of the slant asymptote for the rational function f(x) = (3x² - 5x + 1) / (x - 2).

Solution:

  1. 1
    Identify the need
    The degree of the numerator (2) is exactly one greater than the degree of the denominator (1). This is the signal that a slant asymptote exists.
  2. 2
    Set up the division
    We'll divide 3x² - 5x + 1 by x - 2.
          _______
    x - 2 | 3x² - 5x + 1
  3. 3
    First step
    How many times does x go into 3x²? It goes in 3x times. Write 3x on top.
          3x
          _______
    x - 2 | 3x² - 5x + 1
  4. 4
    Multiply and subtract
    Multiply 3x by the divisor (x - 2) to get 3x² - 6x. Write this underneath and subtract the whole expression.
          3x
          _______
    x - 2 | 3x² - 5x + 1
          -(3x² - 6x)
          ----------
                 x + 1

    Why this step is crucial: This is where mistakes happen. You are subtracting (3x² - 6x), which means you do -5x - (-6x), which is -5x + 6x = x. Be careful with your signs!

  5. 5
    Repeat the process
    Bring down the +1. Now, how many times does x go into x? It goes in +1 time. Write +1 on top.
          3x  + 1
          _______
    x - 2 | 3x² - 5x + 1
          -(3x² - 6x)
          ----------
                 x + 1
  6. 6
    Final multiply and subtract
    Multiply 1 by (x - 2) to get x - 2. Subtract this from x + 1.
          3x  + 1
          _______
    x - 2 | 3x² - 5x + 1
          -(3x² - 6x)
          ----------
                 x + 1
               -(x - 2)
               --------
                      3

    The remainder is 3. The quotient is 3x + 1.

  7. 7
    State the answer
    The equation of the slant asymptote is the quotient. Answer: The slant asymptote is y = 3x + 1. The function f(x) will behave like the line y = 3x + 1 for very large positive or negative values of x.

Example 2

Using the Binomial Theorem

Problem: Expand the expression (2x - 3)⁴ into standard polynomial form.

Solution:

  1. 1
    Identify the components
    This is in the form (a+b)ⁿ where a = 2x, b = -3, and n = 4.
  2. 2
    Find the coefficients
    We need the n=4 row of Pascal's Triangle, which is 1, 4, 6, 4, 1.
  3. 3
    Set up the expansion
    We'll write out the five terms using the coefficients, with the powers of a descending and the powers of b ascending. 1(2x)⁴(-3)⁰ + 4(2x)³(-3)¹ + 6(2x)²(-3)² + 4(2x)¹(-3)³ + 1(2x)⁰(-3)⁴ Why this step is crucial: Don't forget the parentheses around 2x and -3. The powers apply to the entire term, including the number and the sign. This is the most common place to make a mistake.
  4. 4
    Simplify each term carefully
    • Term 1: 1 * (16x⁴) * 1 = 16x⁴
    • Term 2: 4 * (8x³) * (-3) = -96x³
    • Term 3: 6 * (4x²) * (9) = 216x²
    • Term 4: 4 * (2x) * (-27) = -216x
    • Term 5: 1 * (1) * (81) = 81
  5. 5
    Combine the terms
    Answer: 16x⁴ - 96x³ + 216x² - 216x + 81
A rational function approaches its slant asymptote for large x values.

Try it yourself

Ready to try a couple on your own? Don't worry about getting it perfect on the first try. The goal is to practice the process.

  1. 1
    Rational Function Analysis
    Take the function g(x) = (x² - 9) / (x² + x - 6).
    • Rewrite it in factored form.
    • Using your factored form, identify any x-intercepts, vertical asymptotes, and holes.
    • Using the original standard form, find the y-intercept and the horizontal asymptote.
    • Hint: Remember what happens when a factor appears on both the top and bottom!
  2. 2
    Binomial Expansion
    • Use the Binomial Theorem and Pascal's Triangle to expand (x + 3)³.
    • Hint: Which row of Pascal's Triangle corresponds to an exponent of 3? Your terms will involve powers of x and powers of 3.

Take your time, write out each step, and check your work. You've got this.

The function g(x) has a hole at x=3 and a vertical asymptote at x=-3.