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):
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.
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:
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:
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.
- (x - a) — standard form. Substitute a. Remainder = P(a).
- (x + b) — rewrite as (x - (-b)). Substitute -b. Remainder = P(-b).
- (2x - 3) or (3x + 1) — linear but leading coefficient not 1. Factoring out the leading coefficient gives 2(x - \tfrac{3}{2}), but the remainder when dividing by 2(x - \tfrac{3}{2}) is not simply P(\tfrac{3}{2}) — the extra factor scales things. Long-divide instead, or handle it as a two-step problem.
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.
- Divisor is quadratic or higher. E.g. (x^2 + 1). The remainder is a polynomial of degree at most 1 — shaped like ax + b, not a single number. No substitution gives two numbers at once. Long-divide.
- Divisor is ax + b with a \neq 1. E.g. (3x - 2). The root is x = \tfrac{2}{3}, so P(\tfrac{2}{3}) is related to the remainder, but not equal to it — the coefficient a scales things. In exam conditions, long division is safer.
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.
- Remainder Theorem: the remainder when P(x) is divided by (x - a) equals P(a).
- Factor Theorem: (x - a) is a factor of P(x) if and only if P(a) = 0.
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.
- P(x) = x^2 + 5x - 6, divisor (x - 1). P(1) = 1 + 5 - 6 = 0. Remainder 0, so (x - 1) is a factor.
- P(x) = x^3 + 1, divisor (x + 1), so a = -1. P(-1) = -1 + 1 = 0. Remainder 0.
- P(x) = 2x^3 - 5x + 4, divisor (x - 2). P(2) = 16 - 10 + 4 = 10. Remainder 10.
- P(x) = x^4 + 1, divisor (x - 3). P(3) = 81 + 1 = 82. Remainder 82.
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:
- Only the remainder? Go to filter 2.
- Divisor of the form (x - a) with leading coefficient 1? Substitute.
- 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 Remainder Theorem only works for cubics." No — any polynomial, any degree. The only constraint is on the divisor.
- "P(a) gives the quotient." No — P(a) gives the remainder. The quotient is a whole polynomial, not a single number.
- "(x + 3) means a = 3." No. (x + 3) = (x - (-3)), so a = -3. Missing this sign flip is a common mistake.
- "The theorem doesn't work when coefficients are bigger than 1." Not a real condition. P(x) = 7x^3 + 4x^2 - 11 is fine; substitute x = a and compute.
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.