This exercise covers dividing polynomials (degree up to 4) by linear or quadratic polynomials, and applying the Remainder Theorem.
To divide P(x) by D(x), we find quotient Q(x) and remainder R(x) such that:
P(x)=D(x)⋅Q(x)+R(x)
where deg(R)<deg(D).
Steps:
- Divide the leading term of P(x) by the leading term of D(x).
- Multiply the result by D(x) and subtract from P(x).
- Repeat with the new polynomial until the degree of the remainder is less than the degree of D(x).
When dividing by (x−k), synthetic division provides a shortcut:
- Write the coefficients of P(x) in a row (use 0 for missing terms).
- Bring down the first coefficient.
- Multiply by k, add to the next coefficient, and repeat.
- The last number is the remainder; the others are coefficients of Q(x).
Example: Divide P(x)=x3−4x2+5x−2 by (x−2):
211−42−25−41−220
Quotient: x2−2x+1, Remainder: 0.
Theorem: If a polynomial P(x) is divided by (x−a), the remainder is P(a).
Proof sketch: By the division algorithm, P(x)=(x−a)Q(x)+R. Setting x=a gives P(a)=R.
Example: Find the remainder when P(x)=x3−3x2+4 is divided by (x−2):
P(2)=8−12+4=0
Remainder =0, so (x−2) is actually a factor.
The questions in Exercise 5.2 ask you to:
- Perform polynomial long division and state the quotient and remainder.
- Use the Remainder Theorem to find remainders without full division.
- Verify results by checking P(a)= remainder.