The question reads: "Find the remainder when P(x) = x^3 - 2x^2 + 5x - 3 is divided by (x - 1)."

Your pencil drifts toward the long-division bracket. Three rounds of subtraction, careful bookkeeping of leading terms, maybe a sign error along the way — three minutes of arithmetic for one final number.

Stop. Read the question again. It asks only for the remainder, not the quotient. And the divisor is linear, of the form (x - a). That is the signal. The Remainder Theorem says the remainder is simply P(a):

P(1) = 1 - 2 + 5 - 3 = 1

Remainder is 1. Ten seconds. Move on while the student next to you is still on Round 2.

The Remainder Theorem

When a polynomial P(x) is divided by a linear divisor (x - a), the remainder is not a polynomial. It is a single number, and that number is P(a) — the value of P evaluated at x = a.

\text{remainder} = P(a)

No division needed. No quotient to track. You substitute the number a into the polynomial and the arithmetic spits out the remainder.

The proof (one paragraph)

Every polynomial division obeys the identity P(x) = (x - a) \cdot Q(x) + R, where Q(x) is the quotient and R is the remainder. Because the divisor has degree 1, the remainder has degree strictly less than 1 — so R is a constant, not a polynomial. Now plug in x = a:

P(a) = (a - a) \cdot Q(a) + R = 0 \cdot Q(a) + R = R

Whatever Q(a) happens to be, it gets multiplied by zero and vanishes. What survives is R. So R = P(a). The shortcut is literally the identity substituted at a single point.

Worked example 1

Take P(x) = x^3 - 2x^2 + 5x - 3 and divide by (x - 1).

Shortcut route: P(1) = 1 - 2 + 5 - 3 = 1. Remainder is 1.

Long-division route would take three rounds of subtraction, producing quotient x^2 - x + 4 and the same remainder 1. Three times the work for the same single number. If the question asks only for the remainder, the substitution wins outright.

Worked example 2

Now P(x) = 2x^4 + 3x^2 - 4x + 7 divided by (x + 2). Rewrite (x + 2) as (x - (-2)) to read off a = -2:

P(-2) = 2(16) + 3(4) - 4(-2) + 7 = 32 + 12 + 8 + 7 = 59

Remainder is 59. A quartic would take four rounds of long division; the substitution is still one line. Sign care matters: (x + 2) means a = -2, not a = 2. Miss this and you substitute the wrong number.

Recognising the "right" divisor

The shortcut depends on the divisor having a specific shape. Read it carefully before reaching for substitution.

Quick sanity check: is the divisor "x minus or plus a number," with nothing stuck to the x? If yes, substitute. If not, think twice.

When the shortcut DOESN'T apply

Two red flags push you back to long division.

Using Horner's method for the computation

Once you have committed to evaluating P(a), you can speed up the arithmetic itself with Horner's method — a nested-multiplication trick that avoids computing large powers.

Take P(x) = 3x^3 - 2x^2 + 5x - 7 at x = 2. Direct: 3(8) - 2(4) + 5(2) - 7 = 24 - 8 + 10 - 7 = 19. Horner rewrites P(x) = ((3x - 2)x + 5)x - 7, giving ((3 \cdot 2 - 2) \cdot 2 + 5) \cdot 2 - 7 = 13 \cdot 2 - 7 = 19. Same answer. For a cubic the difference is cosmetic; for a degree-10 polynomial, Horner replaces ten power computations with ten multiply-add pairs — much cheaper and much less error-prone.

Combined with Factor Theorem

The Remainder Theorem has a famous sibling — the Factor Theorem — and they are really two views of the same fact.

The Factor Theorem is just the Remainder Theorem specialised to "the remainder happens to be zero." So one substitution P(a) answers two questions at once: what is the remainder, and is (x - a) a factor? If P(a) = 0, both — remainder is zero and (x - a) is a factor. If P(a) \neq 0, neither — remainder is P(a) and (x - a) is not a factor.

Recognition drill — remainder by plug-in

Try each without writing any division.

Each of these would take 2-3 minutes of long division. Each takes under 20 seconds of substitution.

What to do when you ALSO need the quotient

The Remainder Theorem gives only the remainder. If the question also asks for the quotient, substitution is not enough — reach for synthetic division, a shortcut version of long division that works only for linear divisors. It tracks only the coefficients (not the x^k symbols) and delivers both the quotient and the remainder in one pass.

Exam strategy

Match the tool to the question in three filters:

  1. Only the remainder? Go to filter 2.
  2. Divisor of the form (x - a) with leading coefficient 1? Substitute.
  3. Anything else? Synthetic division (if linear) or long division (if higher degree).

Five seconds of thought decides between the 10-second route and the 3-minute one.

Common confusions

The takeaway

If the divisor is linear of the form (x - a) and the question asks only for the remainder, do not long-divide. Substitute x = a into P(x) and you are done. The Factor Theorem sits right next to it for the zero-remainder case — if P(a) = 0, you also get a factor for free.

Recognising the pattern is the skill. Once you have seen it three times, long division for "find the remainder" problems will feel absurd.