Relevant SLOs: M-11-A-42, M-11-A-43, M-11-A-44
When a polynomial P(x) of degree ≤4 is divided by a linear polynomial (x−k), the result is:
P(x)=(x−k)⋅Q(x)+R
where:
- Q(x) = quotient (degree one less than P(x))
- R = remainder (a constant)
Division can be performed by long division or synthetic division.
If a polynomial P(x) is divided by (x−a), the remainder is P(a).
No long division needed — simply substitute x=a into P(x).
Example: Find the remainder when P(x)=2x3+3x2−4x+1 is divided by (x+2).
Here (x+2)=(x−(−2)), so 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: when the remainder is zero, (x−a) divides P(x) exactly.
Steps to factorize a cubic polynomial P(x) using the Factor Theorem:
- Find a root a by testing integer values (factors of the constant term) until P(a)=0.
- Divide P(x) by (x−a) using synthetic or long division to get a quadratic Q(x).
- Factorize the quadratic Q(x) by inspection, completing the square, or the quadratic formula.
- Write the complete factorization: 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.
- Divide: P(x)=(x−1)(x2−5x+6)
- Factorize quadratic: x2−5x+6=(x−2)(x−3)
- Result: P(x)=(x−1)(x−2)(x−3)