Skip to content
Medium

The Remainder Theorem

Simple Explanation

The Remainder Theorem says that dividing a polynomial P(x) by (x βˆ’ a) always leaves a remainder equal to P(a) β€” so you can find the remainder with a single substitution, without doing any division at all.

Why Do We Need It?

This is a genuine shortcut: it replaces an entire division process with one evaluation, saving significant work whenever only the remainder (not the full quotient) is needed.

Formula

The Remainder Theorem

If P(x) is divided by (x βˆ’ a), the remainder equals P(a)

Dividing a polynomial by (x βˆ’ a) always leaves a remainder equal to the polynomial evaluated at x = a β€” found by a single substitution, without doing the division at all.

P(x)
β€” the polynomial being divided
a
β€” the constant in the linear divisor (x βˆ’ a)
P(a)
β€” the polynomial evaluated at x = a β€” this equals the remainder

When to use it: Whenever you need the remainder of a polynomial divided by a linear factor (x βˆ’ a), without carrying out the full division.

Worked Example

Find a remainder using substitution

Find the remainder when P(x) = xΒ³ βˆ’ 2xΒ² + 4x βˆ’ 1 is divided by (x βˆ’ 2), without dividing.

    Why Does This Work?

    From the division identity, P(x) = (xβˆ’a)Q(x) + R, where R is a constant (since the degree of R must be less than the degree of the linear divisor, degree 1, meaning R has degree 0). Substituting x = a makes the (xβˆ’a)Q(x) term vanish entirely, leaving P(a) = R exactly.

    Real-Life Example

    Quick error-checking in engineering calculations

    An engineer wants to quickly verify whether a specific measurement value satisfies a polynomial design constraint, without fully dividing the formula.

    A single substitution (the remainder theorem) tells them immediately whether that value gives an exact fit (remainder 0) or how far off it is.

    Practice

    Find the remainder when P(x) = 2xΒ³ + x βˆ’ 5 is divided by (x + 1). (Note: x+1 = xβˆ’(βˆ’1).)

    Medium

    Common mistake

    Applying the remainder theorem to a non-linear divisor (like xΒ² βˆ’ 4) β€” it only works directly for linear divisors of the exact form (x βˆ’ a).

    Quick Review

    • Dividing P(x) by (x βˆ’ a) leaves a remainder of exactly P(a).
    • This replaces the whole division process with a single substitution.
    • Only applies to linear divisors of the form (x βˆ’ a).