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.