This exercise applies polynomial division, the Remainder Theorem, and the Factor Theorem to evaluate remainders and identify factors of polynomials.
To divide a polynomial P(x) of degree up to 4 by a linear factor (x−k), use synthetic division:
- Write the coefficients of P(x).
- Use k as the synthetic divisor.
- Bring down the leading coefficient, multiply by k, add to the next coefficient, and repeat.
- The final value is the remainder; the preceding values are coefficients of the quotient.
If a polynomial P(x) is divided by (x−a), the remainder is P(a).
Example: Find the remainder when P(x)=2x3+3x2−4x+1 is divided by (x+2).
Here a=−2:
P(−2)=2(−2)3+3(−2)2−4(−2)+1=−16+12+8+1=5
Remainder =5.
(x−a) is a factor of P(x) if and only if P(a)=0.
This is a special case of the Remainder Theorem where the remainder is zero.
Steps to factorize a cubic polynomial P(x):
- Find a value a such that P(a)=0 (try ±1,±2,…).
- Divide P(x) by (x−a) using synthetic division to get a quadratic quotient Q(x).
- Factorize Q(x) by inspection or the quadratic formula.
- Write P(x)=(x−a)⋅Q(x).
Example: Factorize P(x)=x3−6x2+11x−6.
- Test x=1: P(1)=1−6+11−6=0 ✓ → (x−1) is a factor.
- Synthetic division gives quotient x2−5x+6.
- x2−5x+6=(x−2)(x−3).
- Therefore: P(x)=(x−1)(x−2)(x−3).