Higher-Degree Polynomial Operations
Higher-Degree Polynomial Operations
Working with polynomials of degree three (cubic) or higher involves a few specialized techniques. By mastering polynomial division and key theorems, you can simplify, factor, and solve complex polynomial equations.
Polynomial Division
Just like numbers, polynomials can be divided. There are two main methods:
- Long Division: Works for dividing by any polynomial.
- Synthetic Division: A faster shortcut method used specifically when dividing by a linear binomial of the form xโc.
Example: Synthetic Division
Divide x3โ2x2+5xโ10 by (xโ2)
- Identify c from xโc. Here, c=2.
- Write down the coefficients of the dividend: 1,โ2,5,โ10.
- Bring down the first coefficient (1).
- Multiply it by c (1ร2=2) and add it to the next coefficient (โ2+2=0).
- Repeat: 0ร2=0, 5+0=5.
- Repeat again: 5ร2=10, โ10+10=0.
The final numbers are 1,0,5,0. The last number is the remainder (0). The others are the coefficients of the quotient, which is one degree lower than the original polynomial. Result: x2+5
The Remainder Theorem
The Remainder Theorem provides a quick way to find the remainder of a polynomial division without actually doing the division.
If a polynomial f(x) is divided by xโc, the remainder is exactly equal to f(c).
For example, if you want to know the remainder when f(x)=x3โ2x2+5xโ10 is divided by xโ2, simply calculate f(2): f(2)=(2)3โ2(2)2+5(2)โ10=8โ8+10โ10=0
The Factor Theorem
The Factor Theorem is a direct result of the Remainder Theorem. It states that xโc is a factor of a polynomial f(x) if and only if f(c)=0.
Because f(2)=0 in our previous example, we know definitively that (xโ2) is a factor of x3โ2x2+5xโ10.
Factoring Higher-Degree Polynomials
Sometimes, higher-degree polynomials follow specific patterns, such as the sum or difference of cubes.
- Sum of Cubes: a3+b3=(a+b)(a2โab+b2)
- Difference of Cubes: a3โb3=(aโb)(a2+ab+b2)
Example: Factor Completely
Factor x3+8
Notice that this is a sum of perfect cubes, since 8=23. Using the formula where a=x and b=2: x3+23=(x+2)(x2โ2x+22) x3+8=(x+2)(x2โ2x+4)
The quadratic trinomial x2โ2x+4 cannot be factored further over the real numbers, so the polynomial is completely factored.