This question applies polynomial long division and the Remainder Theorem to divide polynomials of degree up to 4 by linear or quadratic polynomials.
For any polynomial P(x) divided by a non-zero polynomial D(x):
P(x)=D(x)⋅Q(x)+R(x)
where:
- Q(x) = quotient
- R(x) = remainder, with deg(R)<deg(D)
When dividing by a linear factor (x−k), the remainder R is a constant.
If a polynomial P(x) is divided by (x−a), the remainder equals P(a).
Proof sketch:
P(x)=(x−a)⋅Q(x)+R
Substituting x=a:
P(a)=(a−a)⋅Q(a)+R=0+R=R
So the remainder R=P(a). No long division is required.
To divide P(x) by D(x):
- Arrange both polynomials in descending powers of x, inserting 0 for missing terms.
- Divide the leading term of P(x) by the leading term of D(x) to get the first term of Q(x).
- Multiply D(x) by that term and subtract from P(x).
- Bring down the next term and repeat until the degree of the remainder is less than the degree of D(x).
Divide P(x)=2x3+3x2−4x+1 by (x+2).
Using the Remainder Theorem (to find remainder only):
(x+2)=(x−(−2))⟹a=−2
P(−2)=2(−2)3+3(−2)2−4(−2)+1=−16+12+8+1=5
Remainder = 5
Using Long Division (to find quotient and remainder):
\requireenclose2x3+3x2−4x+1÷(x+2)
| Step | Operation | Result |
|---|
| 1 | 2x3÷x=2x2 | First term of Q(x) |
| 2 | 2x2(x+2)=2x3+4x2; subtract | −x2−4x+1 |
| 3 | −x2÷x=−x | Second term |
| 4 | −x(x+2)=−x2−2x; subtract | −2x+1 |
| 5 | −2x÷x=−2 | Third term |
| 6 | −2(x+2)=−2x−4; subtract | 5 |
∴Q(x)=2x2−x−2,R=5
Verification: (x+2)(2x2−x−2)+5=2x3+3x2−4x+1 ✓