James's Math Hub
Algebra 2

Lesson 2 / 5 · 12 min read

Polynomial Division

Long division, synthetic division, and the remainder theorem shortcut.

Why divide polynomials?

Division shows up when you want to:

  • Simplify a rational expression.
  • Pull a known factor out of a polynomial.
  • Evaluate p(c)p(c) using the remainder theorem — sometimes faster than plugging in.

Two methods: long division (always works) and synthetic division (faster, but only for divisors of the form xcx - c).

Polynomial long division

Just like numerical long division.

Example. Divide x3+2x25x6x^3 + 2x^2 - 5x - 6 by x2x - 2.

  1. x3÷x=x2x^3 \div x = x^2. Multiply back: x2(x2)=x32x2x^2(x - 2) = x^3 - 2x^2. Subtract: (x3+2x2)(x32x2)=4x2(x^3 + 2x^2) - (x^3 - 2x^2) = 4x^2.
  2. Bring down the next term: 4x25x4x^2 - 5x. Divide: 4x2÷x=4x4x^2 \div x = 4x. Multiply: 4x(x2)=4x28x4x(x - 2) = 4x^2 - 8x. Subtract: 4x25x(4x28x)=3x4x^2 - 5x - (4x^2 - 8x) = 3x.
  3. Bring down: 3x63x - 6. Divide: 3x÷x=33x \div x = 3. Multiply: 3(x2)=3x63(x - 2) = 3x - 6. Subtract: 00.

Quotient: x2+4x+3x^2 + 4x + 3. Remainder: 00.

So x3+2x25x6=(x2)(x2+4x+3)x^3 + 2x^2 - 5x - 6 = (x - 2)(x^2 + 4x + 3).

Synthetic division

A shortcut when the divisor is xcx - c. Write only the coefficients.

Example. Same problem, x3+2x25x6x^3 + 2x^2 - 5x - 6 divided by x2x - 2. Use c=2c = 2.

2 | 1   2  -5  -6
  |     2   8   6
  |________________
    1   4   3   0

Process: bring down 11. Multiply by 222 \to 2. Add: 2+2=42 + 2 = 4. Multiply by 282 \to 8. Add: 5+8=3-5 + 8 = 3. Multiply by 262 \to 6. Add: 6+6=0-6 + 6 = 0.

Bottom row reads off the quotient x2+4x+3x^2 + 4x + 3 and remainder 00.

The remainder theorem

If you divide a polynomial p(x)p(x) by xcx - c, the remainder equals p(c)p(c).

Example. Find p(3)p(3) for p(x)=2x3x2+4p(x) = 2x^3 - x^2 + 4. Use synthetic division with c=3c = 3, coefficients 2,1,0,42, -1, 0, 4:

3 | 2  -1   0   4
  |    6  15  45
  |_______________
    2   5  15  49

Remainder =49=p(3)= 49 = p(3).

A surprisingly fast way to evaluate.

The factor theorem

A corollary: xcx - c is a factor of p(x)p(x) if and only if p(c)=0p(c) = 0. Roots and linear factors are two sides of the same coin.

Key takeaways

  • Long division works for any polynomial divisor.
  • Synthetic division is faster, but only for divisors of the form xcx - c.
  • Remainder theorem: dividing p(x)p(x) by xcx - c gives a remainder of p(c)p(c).
  • Factor theorem: p(c)=0    (xc)p(c) = 0 \iff (x - c) is a factor.