In short

The Remainder Theorem says: when you divide a polynomial p(x) by (x - a), the remainder is p(a). The Factor Theorem is the special case where the remainder is zero — (x - a) is a factor of p(x) if and only if p(a) = 0. Together, they let you find remainders without doing long division and factor polynomials by testing values.

Suppose someone asks you: what is the remainder when x^{50} - 3x + 7 is divided by (x - 1)?

You could set up polynomial long division — fifty rounds of it, peeling off one power of x at each step. But there is a much faster way: just plug in x = 1. You get 1 - 3 + 7 = 5. The remainder is 5.

That shortcut is the Remainder Theorem, and it is not a trick — it is a theorem with a clean one-line proof. It says something deep about the connection between dividing a polynomial and evaluating it. And its special case, the Factor Theorem, is the engine behind nearly every factoring technique you will use from here to JEE Advanced.

The division identity

Before stating the theorems, recall how polynomial division works. When you divide a polynomial p(x) by a non-zero polynomial d(x), you get a quotient q(x) and a remainder r(x) such that

p(x) = d(x) \cdot q(x) + r(x)

with \deg(r) < \deg(d). This identity holds for all values of x — it is an identity of polynomials, not just an equation at a particular point.

When the divisor is linear — d(x) = (x - a) — its degree is 1, so the remainder must have degree less than 1. That means the remainder is a constant: a single number, not a polynomial in x. Call it R. The division identity becomes:

p(x) = (x - a) \cdot q(x) + R

This is the setup for both theorems.

The polynomial division identity for a linear divisorA diagram showing the equation p of x equals x minus a times q of x plus R, with labels indicating that q of x is the quotient, x minus a is the divisor, and R is a constant remainder. p(x) = (x − a) · q(x) + R divisor quotient remainder (constant) holds for every value of x
The division identity for a linear divisor $(x - a)$. The remainder $R$ is always a constant, because it must have degree less than $1$. This single equation is the foundation of both theorems.

The Remainder Theorem

Remainder Theorem

When a polynomial p(x) is divided by (x - a), the remainder is p(a).

Proof

Start with the division identity:

p(x) = (x - a) \cdot q(x) + R

This holds for every value of x. In particular, it holds for x = a. Substitute:

p(a) = (a - a) \cdot q(a) + R = 0 \cdot q(a) + R = R

So R = p(a). The remainder equals the polynomial evaluated at a.

That is the entire proof — three lines. The key move is the substitution x = a, which kills the (x - a) factor and leaves only the remainder.

What it means

The theorem says that two operations that look completely different are secretly the same:

  1. Long division of p(x) by (x - a), then reading off the remainder.
  2. Evaluation of p(x) at x = a.

Both give the same number. So whenever you need a remainder after dividing by a linear polynomial, skip the division and just evaluate.

Two paths to the same remainder: long division versus direct evaluationA diagram showing two paths from the polynomial p of x to the remainder R. The left path goes through long division by x minus a. The right path goes through direct evaluation at x equals a. Both arrive at the same value R equals p of a. p(x) long division evaluate at a divide by (x − a) compute p(a) R = p(a)
Two roads to the remainder. The long road goes through the full division algorithm. The short road is a single evaluation. The Remainder Theorem guarantees they arrive at the same place.

Finding remainders quickly

Here is the power of the theorem in action. Find the remainder when p(x) = x^4 - 3x^3 + 2x^2 + x - 5 is divided by (x - 2).

Instead of four rounds of long division, evaluate p(2):

p(2) = 16 - 24 + 8 + 2 - 5 = -3

The remainder is -3. One line of arithmetic.

What about dividing by (x + 3)? Write (x + 3) as (x - (-3)), so a = -3. Evaluate p(-3):

p(-3) = 81 - 3(-27) + 2(9) + (-3) - 5 = 81 + 81 + 18 - 3 - 5 = 172

The remainder is 172. Again, one evaluation — no division needed.

The Factor Theorem

The Factor Theorem is the Remainder Theorem with the remainder set to zero.

Factor Theorem

(x - a) is a factor of p(x) if and only if p(a) = 0.

Proof

"If" direction. Suppose p(a) = 0. By the Remainder Theorem, the remainder when dividing p(x) by (x - a) is p(a) = 0. So the division identity becomes p(x) = (x - a) \cdot q(x) + 0 = (x - a) \cdot q(x). This means (x - a) divides p(x) exactly — it is a factor.

"Only if" direction. Suppose (x - a) is a factor of p(x). Then p(x) = (x - a) \cdot q(x) for some polynomial q(x). Substitute x = a: p(a) = (a - a) \cdot q(a) = 0.

Both directions are one-liners. The theorem is logically a biconditional: p(a) = 0 \Leftrightarrow (x - a) divides p(x).

What it means

The Factor Theorem converts a factoring question into an evaluation question. Instead of trying to guess or force a factorization, you test values. If you find a value a where p(a) = 0, you know (x - a) is a factor. Then you can divide p(x) by (x - a) — using long division or synthetic division — to find the quotient, and repeat the process on the quotient.

This is the standard strategy for factoring polynomials of degree 3 and higher: find a root by testing, peel off the corresponding linear factor, and reduce the problem to a lower degree.

The Factor Theorem as a decision procedure: test p(a) to decide if (x minus a) is a factorA flowchart. Start with the question: is x minus a a factor of p of x? Evaluate p at a. If p of a equals zero, then yes, x minus a is a factor. If p of a is not zero, then no, and the remainder is p of a. Is (x − a) a factor of p(x)? Evaluate p(a) p(a) = 0 p(a) ≠ 0 Yes — (x−a) is a factor No — remainder is p(a)
The Factor Theorem as a decision rule. To check whether $(x - a)$ divides $p(x)$, compute $p(a)$. If zero, it is a factor. If non-zero, it is not — and the non-zero value is the remainder.

Factorization using the Factor Theorem

Here is the method in full. Take p(x) = x^3 - 6x^2 + 11x - 6.

Step 1. Hunt for a root. Try small integers. If p(x) has integer coefficients and a rational root p/q in lowest terms, then p divides the constant term and q divides the leading coefficient. Here the leading coefficient is 1 and the constant term is -6, so any rational root must be a divisor of -6: try \pm 1, \pm 2, \pm 3, \pm 6.

p(1) = 1 - 6 + 11 - 6 = 0. Found one: x = 1 is a root, so (x - 1) is a factor.

Step 2. Divide out the known factor. Divide x^3 - 6x^2 + 11x - 6 by (x - 1). By long division (or synthetic division):

x^3 - 6x^2 + 11x - 6 = (x - 1)(x^2 - 5x + 6)

Step 3. Factor the quotient. The quotient x^2 - 5x + 6 is a quadratic. Find two numbers that multiply to 6 and add to -5: that is -2 and -3. So x^2 - 5x + 6 = (x - 2)(x - 3).

Step 4. Write the full factorization.

x^3 - 6x^2 + 11x - 6 = (x - 1)(x - 2)(x - 3)

The three roots are 1, 2, 3 — a degree-3 polynomial factored into three linear factors, exactly as the Fundamental Theorem of Algebra predicts.

Interactive graph of x cubed minus 6x squared plus 11x minus 6 showing three rootsA coordinate plane showing the cubic curve y equals x cubed minus 6x squared plus 11x minus 6. The curve crosses the x-axis at x equals 1, 2, and 3. A draggable red point on the curve shows the function value as it moves. x y 1 2 3 4 drag the red point
The cubic $p(x) = x^3 - 6x^2 + 11x - 6$ crosses zero at $x = 1$, $2$, and $3$. At each crossing, $p(a) = 0$, confirming $(x - a)$ is a factor. Drag the red point to watch $p(x)$ pass through zero at each root.

Two worked examples

Example 1: Find the remainder when $p(x) = 3x^4 - 5x^3 + 2x - 7$ is divided by $(x - 2)$, then verify by long division

Step 1. Apply the Remainder Theorem. The divisor is (x - 2), so a = 2. Evaluate p(2):

p(2) = 3(16) - 5(8) + 2(2) - 7 = 48 - 40 + 4 - 7 = 5

Why: the Remainder Theorem says the remainder equals p(a). One evaluation replaces the entire division.

Step 2. Verify by long division. Divide 3x^4 - 5x^3 + 0x^2 + 2x - 7 by (x - 2).

Round 1: 3x^4 \div x = 3x^3. Multiply: (x - 2)(3x^3) = 3x^4 - 6x^3. Subtract: (-5x^3) - (-6x^3) = x^3. New dividend: x^3 + 0x^2 + 2x - 7.

Why: note the missing x^2 term — treat its coefficient as 0 to keep the columns aligned.

Step 3. Round 2: x^3 \div x = x^2. Multiply: (x - 2)(x^2) = x^3 - 2x^2. Subtract: 0x^2 - (-2x^2) = 2x^2. New dividend: 2x^2 + 2x - 7.

Round 3: 2x^2 \div x = 2x. Multiply: (x - 2)(2x) = 2x^2 - 4x. Subtract: 2x - (-4x) = 6x. New dividend: 6x - 7.

Round 4: 6x \div x = 6. Multiply: (x - 2)(6) = 6x - 12. Subtract: -7 - (-12) = 5.

Why: the remainder from four rounds of long division is 5 — matching p(2) = 5 exactly.

Step 4. Assemble the result.

3x^4 - 5x^3 + 2x - 7 = (x - 2)(3x^3 + x^2 + 2x + 6) + 5

Result. The remainder is 5, confirmed by both the Remainder Theorem and long division.

Four rounds of long division of 3x to the fourth minus 5x cubed plus 2x minus 7 by x minus 2 with remainder 5A vertical layout showing four rounds of polynomial long division. Each round produces one term of the quotient. The final remainder is 5, matching the evaluation p of 2 equals 5. dividing 3x⁴ − 5x³ + 2x − 7 by (x − 2) Round 1: 3x⁴ ÷ x = 3x³→ x³ + 0x² + 2x − 7 Round 2: x³ ÷ x = x²→ 2x² + 2x − 7 Round 3: 2x² ÷ x = 2x→ 6x − 7 Round 4: 6x ÷ x = 6→ 5 Quotient:3x³ + x² + 2x + 6 Remainder:5 Remainder Theorem verification p(2) = 48 − 40 + 4 − 7 = 5 ✓
Four rounds of long division and one evaluation of $p(2)$ — both give remainder $5$. The Remainder Theorem saved three rounds of work: the evaluation takes seconds, the division takes minutes.

The verification makes the theorem visceral. Two completely different procedures — one algebraic (long division), one arithmetic (substitution) — land on the same number. That is not luck; it is the division identity at work.

Example 2: Use the Factor Theorem to factorize $p(x) = 2x^3 + x^2 - 13x + 6$ completely

Step 1. Hunt for a rational root. The leading coefficient is 2 and the constant term is 6. By the rational root theorem, any rational root p/q (in lowest terms) has p dividing 6 and q dividing 2. Candidates: \pm 1, \pm 2, \pm 3, \pm 6, \pm 1/2, \pm 3/2.

Test x = 2: p(2) = 2(8) + 4 - 26 + 6 = 16 + 4 - 26 + 6 = 0.

Why: p(2) = 0 means (x - 2) is a factor, by the Factor Theorem. One evaluation replaced a guess-and-check factoring attempt.

Step 2. Divide p(x) by (x - 2).

Round 1: 2x^3 \div x = 2x^2. Multiply: (x - 2)(2x^2) = 2x^3 - 4x^2. Subtract: x^2 - (-4x^2) = 5x^2. New dividend: 5x^2 - 13x + 6.

Round 2: 5x^2 \div x = 5x. Multiply: (x - 2)(5x) = 5x^2 - 10x. Subtract: -13x - (-10x) = -3x. New dividend: -3x + 6.

Round 3: -3x \div x = -3. Multiply: (x - 2)(-3) = -3x + 6. Subtract: 6 - 6 = 0.

Why: the remainder is 0, confirming that (x - 2) divides p(x) exactly. The quotient is 2x^2 + 5x - 3.

Step 3. Factor the quotient 2x^2 + 5x - 3. Look for two numbers that multiply to 2 \times (-3) = -6 and add to 5: that is 6 and -1. Split the middle term:

2x^2 + 6x - x - 3 = 2x(x + 3) - 1(x + 3) = (2x - 1)(x + 3)

Why: the grouping method splits 5x into 6x - x to enable factoring by pairs.

Step 4. Write the complete factorization.

2x^3 + x^2 - 13x + 6 = (x - 2)(2x - 1)(x + 3)

Result. The three roots are x = 2, x = 1/2, and x = -3.

Graph of 2x cubed plus x squared minus 13x plus 6 with roots at negative 3, one-half, and 2A coordinate plane showing the cubic curve y equals 2x cubed plus x squared minus 13x plus 6 crossing the x-axis at x equals negative 3, x equals one-half, and x equals 2. x y 1 2 −1 −2 −3 −3 ½ 2
The cubic $2x^3 + x^2 - 13x + 6$ crosses the $x$-axis at $x = -3$, $x = 1/2$, and $x = 2$. Each crossing corresponds to one factor: $(x + 3)$, $(2x - 1)$, and $(x - 2)$. The Factor Theorem found the first root; the rest followed by reducing the degree.

Verify: (x - 2)(2x - 1)(x + 3). Multiply the last two: (2x - 1)(x + 3) = 2x^2 + 6x - x - 3 = 2x^2 + 5x - 3. Then (x - 2)(2x^2 + 5x - 3) = 2x^3 + 5x^2 - 3x - 4x^2 - 10x + 6 = 2x^3 + x^2 - 13x + 6. Confirmed.

Common confusions

Going deeper

If you came here to learn the two theorems, their proofs, and how to use them for finding remainders and factoring polynomials, you have everything — you can stop here. What follows connects these tools to the broader algebraic picture.

Synthetic division — the fast lane

When dividing by (x - a), the long-division algorithm simplifies to a compact table called synthetic division. For the division of 3x^4 - 5x^3 + 0x^2 + 2x - 7 by (x - 2) from Example 1, the setup uses only the coefficients [3, -5, 0, 2, -7] and the value a = 2:

Start with 3. Multiply by 2: 6. Add to -5: 1. Multiply by 2: 2. Add to 0: 2. Multiply by 2: 4. Add to 2: 6. Multiply by 2: 12. Add to -7: 5.

The bottom row reads [3, 1, 2, 6, 5]. The first four entries are the quotient coefficients (3x^3 + x^2 + 2x + 6) and the last is the remainder (5). This is exactly the same result as the long division, but with about a quarter of the writing.

Synthetic division is really the Remainder Theorem in disguise: the last number in the row is always p(a), and the process of building the quotient is equivalent to evaluating p(x) using Horner's method (nested multiplication).

Horner's method

Horner's method rewrites a polynomial for efficient evaluation. Instead of computing each power of x separately, you nest the multiplications:

3x^4 - 5x^3 + 2x - 7 = (((3x - 5)x + 0)x + 2)x - 7

Each step is one multiplication and one addition. For x = 2: start with 3. Multiply by 2, add -5: 1. Multiply by 2, add 0: 2. Multiply by 2, add 2: 6. Multiply by 2, add -7: 5. Same sequence as synthetic division — because they are the same algorithm.

Generalization: remainder when dividing by (x - a)(x - b)

When dividing p(x) by a quadratic (x - a)(x - b) with a \neq b, the remainder is a linear polynomial rx + s. You can find it without full long division by using the Remainder Theorem twice:

The remainder rx + s must satisfy p(a) = ra + s and p(b) = rb + s. These two equations in two unknowns (r and s) determine the remainder uniquely. Solving:

r = \frac{p(a) - p(b)}{a - b}, \qquad s = \frac{a \cdot p(b) - b \cdot p(a)}{a - b}

This is a direct extension of the Remainder Theorem to quadratic divisors — the evaluation trick applied twice.

The Remainder Theorem as a ring homomorphism

For readers who have met abstract algebra: the Remainder Theorem says that the map \phi_a : \mathbb{R}[x] \to \mathbb{R} defined by \phi_a(p) = p(a) — the "evaluation at a" map — is a ring homomorphism whose kernel is the ideal (x - a). The Factor Theorem says exactly that p is in the kernel of \phi_a if and only if (x - a) divides p. The division identity is the statement that \mathbb{R}[x]/(x - a) \cong \mathbb{R} — the quotient ring is just the real numbers. All of the concrete work in this article is this single abstract fact made computational.

Where this leads next

The two theorems are the gateway tools for all advanced polynomial work.