Equivalent Representations of Polynomial and Rational Expressions
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.
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];
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.
- 1The y-interceptJust set
x=0. Everything with anxdisappears, leaving you with the constant term. Here, the constant is 0, so the y-intercept is (0, 0). - 2End BehaviorThe leading term,
x³, 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).
- 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) = 0and 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 = 0x - 3 = 0-->x = 3x + 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.
- To find the zeros, you just set
The same idea applies to rational functions. Consider r(x) = (2x² − 8) / (x² − 3x + 2).
- Standard FormGreat 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 FormLet'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))
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.
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:
- 1Identify the needThe 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.
- 2Set up the divisionWe'll divide
3x² - 5x + 1byx - 2._______ x - 2 | 3x² - 5x + 1 - 3First stepHow many times does
xgo into3x²? It goes in3xtimes. Write3xon top.3x _______ x - 2 | 3x² - 5x + 1 - 4Multiply and subtractMultiply
3xby the divisor(x - 2)to get3x² - 6x. Write this underneath and subtract the whole expression.3x _______ x - 2 | 3x² - 5x + 1 -(3x² - 6x) ---------- x + 1Why 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! - 5Repeat the processBring down the
+1. Now, how many times doesxgo intox? It goes in+1time. Write+1on top.3x + 1 _______ x - 2 | 3x² - 5x + 1 -(3x² - 6x) ---------- x + 1 - 6Final multiply and subtractMultiply
1by(x - 2)to getx - 2. Subtract this fromx + 1.3x + 1 _______ x - 2 | 3x² - 5x + 1 -(3x² - 6x) ---------- x + 1 -(x - 2) -------- 3The remainder is 3. The quotient is
3x + 1. - 7State the answerThe equation of the slant asymptote is the quotient. Answer: The slant asymptote is
y = 3x + 1. The functionf(x)will behave like the liney = 3x + 1for very large positive or negative values ofx.
Using the Binomial Theorem
Problem: Expand the expression (2x - 3)⁴ into standard polynomial form.
Solution:
- 1Identify the componentsThis is in the form
(a+b)ⁿwherea = 2x,b = -3, andn = 4. - 2Find the coefficientsWe need the n=4 row of Pascal's Triangle, which is
1, 4, 6, 4, 1. - 3Set up the expansionWe'll write out the five terms using the coefficients, with the powers of
adescending and the powers ofbascending.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 around2xand-3. The powers apply to the entire term, including the number and the sign. This is the most common place to make a mistake. - 4Simplify 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
- Term 1:
- 5Combine the termsAnswer:
16x⁴ - 96x³ + 216x² - 216x + 81
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.
- 1Rational Function AnalysisTake 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!
- 2Binomial 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
xand powers of3.
- Use the Binomial Theorem and Pascal's Triangle to expand
Take your time, write out each step, and check your work. You've got this.
Practice — 8 questions
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.
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)
- 1.11.A: Rewrite polynomial and rational expressions in equivalent forms.
- 1.11.B: Determine the quotient of two polynomial functions using long division.
- 1.11.C: Rewrite the repeated product of binomials using the binomial theorem.
- 1.11.A.1
- Because the factored form of a polynomial or rational function readily provides information about real zeros, it can reveal information about x-intercepts, asymptotes, holes, domain, and range.
- 1.11.A.2
- The standard form of a polynomial or rational function can reveal information about end behaviors of the function.
- 1.11.A.3
- The information extracted from different analytic representations of the same polynomial or rational function can be used to answer questions in context.
- 1.11.B.1
- Polynomial long division is an algebraic process similar to numerical long division involving a quotient and remainder. If the polynomial f is divided by the polynomial g, then f can be rewritten as f (x) = g(x)q(x) + r(x), where q is the quotient, r is the remainder, and the degree of r is less than the degree of g.
- 1.11.B.2
- The result of polynomial long division is helpful in finding equations of slant asymptotes for graphs of rational functions.
- 1.11.C.1
- The binomial theorem utilizes the entries in a single row of Pascal’s Triangle to more easily expand expressions of the form (a + b)^n, including polynomial functions of the form p(x) = (x + c)^n, where c is a constant.
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];
Read what Saavi narrates
(gentle, upbeat intro music fades)
Hey there, it's Saavi from Shrutam. Let's talk about something that feels a lot like... building a custom gaming PC.
Imagine you and your friend, Priya, are picking out parts. You have a detailed list: the CPU, the graphics card, the motherboard... each with its own price. Adding those up gives you the total cost. That's one way to see the price—a long list of components. But if you wanted to compare your build to a pre-built PC from a store, the store just gives you one final price, say, eighteen hundred dollars. To compare, Priya adds up your list. Now you have two numbers that mean the same thing.
Math is just like that. A function can be written as one big expression, or as a set of factored parts. Neither is better, they just tell you different things. Today, we'll learn how to switch between those forms.
Think of a function's algebraic form like a costume. Changing the costume—from standard to factored form—doesn't change the function itself, but it can reveal different things about its graph. We'll learn the techniques to change that costume and see what secrets each outfit reveals.
Let's try one together. Say we need to find the slant asymptote for the function f of x equals, the fraction three x squared minus five x plus one, all over x minus two.
The first thing I notice is that the degree on top, two, is exactly one more than the degree on the bottom, one. That's our signal to use polynomial long division. The quotient we find will be our answer.
So, we set up the division. We ask, what do I multiply x by to get three x squared? The answer is three x. So we write three x on top. Now, multiply that three x by the whole divisor, x minus two. That gives us three x squared minus six x. We write that underneath and subtract. Be careful here! Negative five x minus negative six x is positive one x.
Bring down the plus one. Now we have x plus one. What do we multiply x by to get x? Just one. So we add a plus one to our answer on top. One times x minus two is x minus two. We subtract again. x plus one minus, in parentheses, x minus two... gives us a remainder of three.
So our quotient is three x plus one. That's it. The equation of the slant asymptote is y equals three x plus one.
Now, here's a common mistake I see every year. When you're subtracting in long division, you have to distribute the negative. When we had to subtract three x squared minus six x, a lot of people will just subtract the three x squared and forget to subtract the negative six x. The easiest way to avoid this is to write parentheses around the expression you're subtracting, and then physically change the signs of each term inside before you combine them. It's a small step that saves a lot of points.
Remember, each form of an equation gives you a different superpower. Your job is to know which form to use to find the information you need. You're building a toolkit, and today you added some powerful new tools. Keep practicing, and I'll see you next time.
(outro music begins to fade in)
When you subtract `(3x² - 6x)`, you must distribute the negative to both terms, making it `-3x² + 6x`. Forgetting this leads to the wrong remainder at every step.
Always write the expression you're subtracting in parentheses and explicitly change the signs before combining terms: `-(3x² - 6x)` becomes `-3x² + 6x`.
You can only cancel common *factors*, which are things being multiplied, not common *terms* that are being added or subtracted. `x²` is a term here, not a factor of the whole numerator or denominator.
First, factor the numerator and denominator completely. Only then can you cancel identical factors that appear in both, like `(x-2)` in `(x-2)(x+1) / (x-2)(x+3)`.
The exponent applies to the entire term. In `(2x)³`, both the `2` and the `x` are cubed, resulting in `8x³`, not `2x³`.
Always wrap the terms `a` and `b` in parentheses when you write out the expansion, like `(2x)` and `(-3)`, and simplify them as a last step.
They represent different graphical behaviors. A hole is a single, removable point of discontinuity. An asymptote is a line the graph approaches but never touches.
After factoring a rational function, if a factor `(x-c)` cancels from the top and bottom, there's a hole at `x=c`. If a factor `(x-c)` remains only in the denominator, there's a vertical asymptote at `x=c`.
Division relies on aligning like terms by their power. If you're dividing `x³ - 5` by `x+2`, you need to write the dividend as `x³ + 0x² + 0x - 5` to keep your columns straight. Without the placeholders, you'll misalign terms and get the wrong answer.
Before starting any long division problem, scan the dividend and divisor. If any power of x is missing between the highest degree and the constant, rewrite the polynomial with a `0` coefficient for that term.