Polynomial Division: the Remainder, Factor, and Rational Root Theorems
Dividing a polynomial by a linear factor is arithmetic in disguise — and the leftover remainder tells you, for free, whether you have found a root.
Division leaves a quotient and a remainder
Dividing 17 by 5 gives quotient 3 and remainder 2, because 17 = 5·3 + 2. Polynomials divide the same way. Dividing f(x) by a divisor d(x) produces a quotient q(x) and a remainder r(x) that is “smaller” than d(x) — of lower degree — so that f(x) = d(x)·q(x) + r(x).
When the divisor is linear, (x − c), the remainder must have degree less than 1 — that is, it is just a number. That single fact is what makes everything in this lesson work.
Synthetic division: the shortcut
Synthetic division is long division of a polynomial by (x − c), stripped down to just its coefficients. Write the coefficients of f(x) in a row, bring down the first one, then repeatedly multiply the last number written by c and add it into the next column. The numbers you generate, except the last, are the coefficients of the quotient q(x); the very last number is the remainder.
The Remainder & Factor Theorems
Substitute x = c into f(x) = (x − c)q(x) + r: the first term vanishes because (c − c) = 0, leaving f(c) = r. So the remainder from dividing f(x) by (x − c) is exactly the value of the function at c — no substitution arithmetic required once the division is done. That is the Remainder Theorem.
Push one step further: if the remainder is 0, then f(c) = 0 — c is a root — and f(x) = (x − c)q(x) exactly, with no leftover. So (x − c) is a factor of f(x) exactly when c is a root exactly when synthetic division by c leaves remainder 0. This is the Factor Theorem — three statements that are all the same fact seen three ways.
The Rational Root Theorem: where to even look
A cubic could have a root anywhere on the number line — testing values blindly is hopeless. The Rational Root Theorem narrows the search: if a polynomial with integer coefficients has a rational root p⁄q (in lowest terms), then p must divide the constant term and q must divide the leading coefficient. That turns an infinite search into a short, finite list of candidates to test by synthetic division — find one rational root, divide it out, and repeat on the smaller quotient until the polynomial is factored completely. It is the same division that later clears a shared factor from a rational function's numerator and denominator.
- Coefficients of f(x), including every power: \( [1,\ 2,\ -5,\ -6] \). Since the divisor is (x − 2), use \( c = 2 \).
- Bring down the 1. Multiply \( 1 \times 2 = 2 \), add to the next coefficient: \( 2 + 2 = 4 \). Multiply \( 4 \times 2 = 8 \), add: \( -5 + 8 = 3 \). Multiply \( 3 \times 2 = 6 \), add: \( -6 + 6 = 0 \).
- The bottom row is \( [1,\ 4,\ 3,\ 0] \): quotient \( q(x) = x^2+4x+3 \), remainder \( 0 \).
- Constant term 6 has factors ±1, ±2, ±3, ±6; leading coefficient 1 has factor ±1, so every candidate is one of these integers.
- Try \( c = -1 \) by synthetic division on \( [1,\ -4,\ 1,\ 6] \): bring down 1; \( 1(-1)=-1,\ -4+(-1)=-5 \); \( -5(-1)=5,\ 1+5=6 \); \( 6(-1)=-6,\ 6+(-6)=0 \). Remainder 0, so \( x=-1 \) is a root and \( q(x)=x^2-5x+6 \).
- The quotient \( x^2 - 5x + 6 \) factors by inspection into \( (x-2)(x-3) \).
Check your understanding
- Dividing f(x) by (x − c) leaves a constant remainder: f(x) = (x − c)q(x) + r.
- Synthetic division computes q(x) and r from coefficients alone by repeated multiply-then-add — insert zeros for any missing powers.
- Remainder Theorem: the remainder equals f(c), giving a free way to evaluate the function.
- Factor Theorem: remainder 0 ⇔ (x − c) is a factor ⇔ c is a root — and synthetic division always uses c, the opposite sign of (x + c).
- Rational Root Theorem narrows candidate roots p/q to factors of the constant term over factors of the leading coefficient, enabling a cubic to be factored completely.