A polynomial P(x) of degree n can be divided by a divisor D(x) of degree less than or equal to n to produce a quotient Q(x) and a remainder R(x):
P(x)=D(x)⋅Q(x)+R(x)
where the degree of R(x) is strictly less than the degree of D(x).
To divide P(x) by a linear factor (x−a) or a quadratic factor:
- Arrange both polynomials in descending powers of x, inserting 0 for missing terms.
- Divide the leading term of the dividend by the leading term of the divisor.
- Multiply the result by the entire divisor and subtract.
- Repeat until the degree of the remainder is less than the degree of the divisor.
Example: Divide P(x)=2x3−3x2+x−5 by (x−2).
2x3−3x2+x−5=(x−2)(2x2+x+3)+1
So the quotient is 2x2+x+3 and the remainder is 1.
Synthetic division is a shorthand method for dividing a polynomial by a linear factor (x−a):
- Write only the coefficients of P(x).
- Use a (the root of the divisor) as the synthetic divisor.
- Bring down, multiply, add — repeat.
Example: Divide x3−6x2+11x−6 by (x−1) using synthetic division:
Quotient: x2−5x+6, Remainder: 0.
Remainder Theorem: If a polynomial P(x) is divided by (x−a), the remainder is P(a).
P(x)=(x−a)⋅Q(x)+P(a)
Example: Find the remainder when P(x)=x3−4x+6 is divided by (x−2).
P(2)=(2)3−4(2)+6=8−8+6=6
The remainder is 6.
Extension: When dividing by (ax−b), the remainder is P(ab).
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 where the remainder equals zero.
To factorize P(x)=ax3+bx2+cx+d:
- Find a root by testing factors of ad (Rational Root Theorem).
- Divide P(x) by (x−a) to get a quadratic quotient Q(x).
- Factor Q(x) by inspection, completing the square, or the quadratic formula.
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 the quadratic: x2−5x+6=(x−2)(x−3).
- Result: P(x)=(x−1)(x−2)(x−3).
If the volume of a rectangular solid is given as a polynomial V(x) and one dimension is a known factor (x−a), divide V(x) by (x−a) to find the product of the remaining two dimensions, then factor the resulting quadratic.
Example: V(y)=y3−2y2−y+2 with one side (y−2).
- P(2)=8−8−2+2=0 → (y−2) is a factor.
- Divide: V(y)=(y−2)(y2−1)=(y−2)(y−1)(y+1).
- Dimensions: (y−2), (y−1), (y+1).
If the area of a rectangle is A(x) and the width is W(x), then:
L(x)=W(x)A(x)
found by polynomial division.
- Polynomial regression: Remainder and Factor Theorems help evaluate and simplify regression polynomials.
- Signal processing: Polynomial factorization is used in filter design.
- Coding theory: Cyclic codes use polynomial division over finite fields.