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.