This question covers polynomial division, the Remainder Theorem, and the Factor Theorem.
To divide a polynomial P(x) by a linear factor (x−k):
Synthetic Division Steps:
- Write the root k and the coefficients of P(x).
- Bring down the leading coefficient.
- Multiply by k, add to the next coefficient.
- Repeat until all coefficients are processed.
- The last number is the remainder; the rest form the quotient.
Example: Divide P(x)=2x3−3x2+x−5 by (x−2):
222−341123−561
Quotient: 2x2+x+3, Remainder: 1
Remainder Theorem: When 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.
Factor Theorem: (x−a) is a factor of P(x) if and only if P(a)=0.
This is a special case of the Remainder Theorem — when the remainder is zero, the divisor is a factor.
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 or long division.
- Factor the resulting quadratic quotient.
- Write P(x) as a product of all linear factors.
Example: Factorize P(x)=x3−6x2+11x−6.
- Test x=1: P(1)=1−6+11−6=0 ✓ → (x−1) is a factor.
- Divide: P(x)=(x−1)(x2−5x+6)
- Factor quadratic: x2−5x+6=(x−2)(x−3)
- Result: P(x)=(x−1)(x−2)(x−3)