This page is the drill ground for the parent topic . We will not re-prove anything — we will instead hunt down every kind of divisor and every kind of trap the Remainder Theorem and Factor Theorem can throw at you, and solve one representative of each.
Before the examples, two tiny reminders so every symbol on this page is earned:
Definition The two theorems in one breath
Remainder Theorem : divide a polynomial p ( x ) by ( x − a ) , and the leftover number (the remainder ) equals p ( a ) — the value you get by plugging a into p . You never do the division; you just substitute.
Factor Theorem : that remainder is 0 exactly when ( x − a ) is a genuine factor (fits perfectly, no leftover). So p ( a ) = 0 ⟺ ( x − a ) is a factor.
The single skill both need: find the number that makes the divisor equal to zero, then substitute it. Call that number the root of the divisor .
Every problem in this whole topic is one of the cells below. The trick is realising a hard-looking question is just a familiar cell wearing a costume.
#
Case class
What makes it tricky
Example
A
Plain divisor ( x − a ) , a > 0
nothing — the warm-up
Ex 1
B
Sign trap: ( x + a )
root is − a , not + a
Ex 2
C
Leading coefficient: ( a x − b )
root is a b , a fraction
Ex 3
D
Zero / degenerate: divide by x itself, or constant polynomial
a = 0 ; remainder = constant term
Ex 4
E
Two conditions → two unknowns
solve a system from two roots
Ex 5
F
Full factorisation (all real roots)
chain Factor Theorem + division
Ex 6
G
Real-world word problem
translate a story into p ( a ) = 0
Ex 7
H
Exam twist: remainders as clues
reverse-engineer p ( x ) from two remainders
Ex 8
Below, each example is stamped with [Cell X] so you can see the matrix filling up.
Worked example Example 1 — [Cell A] plain positive root
Find the remainder when p ( x ) = x 3 − 4 x 2 + 6 x − 5 is divided by ( x − 2 ) .
Forecast: guess the sign of the answer before reading on. Positive? Negative? Zero?
Read the root off the divisor. x − 2 = 0 ⇒ x = 2 , so a = 2 .
Why this step? The Remainder Theorem needs the number that kills the divisor.
Substitute a = 2 into p .
p ( 2 ) = 2 3 − 4 ( 2 2 ) + 6 ( 2 ) − 5 = 8 − 16 + 12 − 5 = − 1.
Why this step? By the theorem, that value is the remainder — no long division needed.
Answer: remainder = − 1 .
Verify: Polynomial Long Division gives q ( x ) = x 2 − 2 x + 2 with remainder − 1 . Rebuild: ( x − 2 ) ( x 2 − 2 x + 2 ) + ( − 1 ) = x 3 − 4 x 2 + 6 x − 4 − 1 = x 3 − 4 x 2 + 6 x − 5 = p ( x ) . ✓
Worked example Example 2 — [Cell B] the sign trap
Find the remainder when p ( x ) = x 3 + 2 x 2 − x + 4 is divided by ( x + 3 ) .
Forecast: many people will substitute x = 3 here. Will that give the right answer? (No — watch.)
Rewrite the divisor to expose its root. ( x + 3 ) = ( x − ( − 3 )) , so a = − 3 .
Why this step? The theorem only recognises the pattern ( x − a ) . The root is what makes x + 3 = 0 , i.e. x = − 3 — not + 3 .
Substitute a = − 3 .
p ( − 3 ) = ( − 3 ) 3 + 2 ( − 3 ) 2 − ( − 3 ) + 4 = − 27 + 18 + 3 + 4 = − 2.
Why this step? Every sign now matters; ( − 3 ) 3 = − 27 (odd power keeps the minus), ( − 3 ) 2 = + 9 .
Answer: remainder = − 2 .
Verify (contrast): the wrong route p ( 3 ) = 27 + 18 − 3 + 4 = 46 . Since the divisor is not ( x − 3 ) , that 46 is meaningless here. Rebuild check: ( x + 3 ) ( x 2 − x + 2 ) + ( − 2 ) = x 3 + 2 x 2 − x + 6 − 2 = x 3 + 2 x 2 − x + 4 = p ( x ) . ✓
Worked example Example 3 — [Cell C] leading coefficient, fractional root
Find the remainder when p ( x ) = 2 x 3 + 3 x 2 − 5 x + 1 is divided by ( 2 x − 1 ) .
Forecast: the remainder theorem's root will be a fraction here. Which fraction?
Solve the divisor for zero. 2 x − 1 = 0 ⇒ x = 2 1 .
Why this step? For ( a x − b ) the root is a b = 2 1 , not the visible 1 or − 1 .
Substitute x = 2 1 , one power at a time.
p ( 2 1 ) = 2 ⋅ 8 1 + 3 ⋅ 4 1 − 5 ⋅ 2 1 + 1 = 4 1 + 4 3 − 2 5 + 1.
Why this step? ( 2 1 ) 3 = 8 1 and ( 2 1 ) 2 = 4 1 ; keep fractions exact.
Add up. 4 1 + 4 3 = 1 , then 1 − 2 5 + 1 = 2 − 2 5 = − 2 1 .
Answer: remainder = − 2 1 .
Verify: the remainder is still a constant even though the root is fractional — good, because ( 2 x − 1 ) has degree 1 so the leftover must have degree 0 . Related tool: Synthetic Division with 2 1 then rescale.
Worked example Example 4 — [Cell D] degenerate divisor
x − 0
Find the remainder when p ( x ) = 5 x 4 − 3 x 2 + 7 x − 9 is divided by x .
Forecast: dividing by plain x — what part of the polynomial survives?
Recognise the disguise. x = ( x − 0 ) , so a = 0 .
Why this step? Zero is a perfectly legal root; the theorem does not break at a = 0 .
Substitute x = 0 . Every term with an x vanishes:
p ( 0 ) = 5 ⋅ 0 − 3 ⋅ 0 + 7 ⋅ 0 − 9 = − 9.
Why this step? Only the constant term has no x , so dividing by x always leaves the constant term as remainder.
Answer: remainder = − 9 (the constant term).
Verify: p ( x ) = x ⋅ ( 5 x 3 − 3 x + 7 ) + ( − 9 ) ; the bracket is q ( x ) and − 9 is left over. This is why "the remainder mod x is the constant term" is a permanent shortcut. ✓
Worked example Example 5 — [Cell E] two conditions, two unknowns
p ( x ) = x 3 + a x 2 + b x − 6 has both ( x − 1 ) and ( x + 2 ) as factors. Find a and b .
Forecast: two factors give two equations. Guess: will a , b come out to whole numbers?
Turn each factor into a zero-condition. By the Factor Theorem, p ( 1 ) = 0 and p ( − 2 ) = 0 .
Why this step? A factor ( x − r ) forces p ( r ) = 0 — that is the whole content of the theorem.
Build equation one from p ( 1 ) = 0 .
1 + a + b − 6 = 0 ⇒ a + b = 5.
Build equation two from p ( − 2 ) = 0 .
( − 2 ) 3 + a ( − 2 ) 2 + b ( − 2 ) − 6 = 0 ⇒ − 8 + 4 a − 2 b − 6 = 0 ⇒ 4 a − 2 b = 14 ⇒ 2 a − b = 7.
Why this step? Two unknowns need two independent equations; each factor supplies one.
Solve the system. Add a + b = 5 and 2 a − b = 7 : 3 a = 12 ⇒ a = 4 , then b = 1 .
Answer: a = 4 , b = 1 , so p ( x ) = x 3 + 4 x 2 + x − 6 .
Verify: p ( 1 ) = 1 + 4 + 1 − 6 = 0 ✓ and p ( − 2 ) = − 8 + 16 − 2 − 6 = 0 ✓. Both factors confirmed.
Worked example Example 6 — [Cell F] complete factorisation
Factor completely: p ( x ) = x 3 − 6 x 2 + 11 x − 6 .
Forecast: it will split into three linear factors. Guess the three roots before diving in.
Hunt a first root among divisors of the constant. By the Rational Root Theorem , any integer root divides 6 : candidates ± 1 , ± 2 , ± 3 , ± 6 . Test x = 1 : p ( 1 ) = 1 − 6 + 11 − 6 = 0 . ✓
Why this step? The Factor Theorem turns "p ( 1 ) = 0 " straight into "( x − 1 ) is a factor" — a cheap first crack.
Divide out ( x − 1 ) . Using Synthetic Division / Polynomial Long Division :
p ( x ) = ( x − 1 ) ( x 2 − 5 x + 6 ) .
Why this step? Removing one factor drops the degree so the leftover quadratic is easy.
Factor the quadratic. Numbers multiplying to 6 and adding to − 5 are − 2 , − 3 :
x 2 − 5 x + 6 = ( x − 2 ) ( x − 3 ) .
See Factoring Polynomials .
Answer: p ( x ) = ( x − 1 ) ( x − 2 ) ( x − 3 ) ; roots 1 , 2 , 3 .
Verify: Fundamental Theorem of Algebra promises exactly 3 roots for a cubic — we found 3 . Check p ( 2 ) = 8 − 24 + 22 − 6 = 0 ✓, p ( 3 ) = 27 − 54 + 33 − 6 = 0 ✓. This underlies Solving Polynomial Equations .
Worked example Example 7 — [Cell G] a real-world story (with a picture)
A stone is thrown so its height in metres after t seconds is h ( t ) = − 5 t 2 + 20 t + 60 . An engineer claims the stone is at ground level (h = 0 ) at t = 6 s. Is ( t − 6 ) a factor of h ( t ) — i.e., is the claim exactly true?
Forecast: look at the parabola. Does it cross zero at t = 6 , or before?
Translate the claim into the Factor Theorem. "Ground level at t = 6 " means h ( 6 ) = 0 , which means ( t − 6 ) is a factor.
Why this step? A root of a height function is a time when height = 0 ; the Factor Theorem tests exactly that.
Evaluate h ( 6 ) .
h ( 6 ) = − 5 ( 36 ) + 20 ( 6 ) + 60 = − 180 + 120 + 60 = 0.
Why this step? If this is 0 , the claim (and the factor) is exact.
Answer: h ( 6 ) = 0 , so ( t − 6 ) is a factor and the engineer is right.
Verify: factor fully — h ( t ) = − 5 ( t 2 − 4 t − 12 ) = − 5 ( t − 6 ) ( t + 2 ) . The other root t = − 2 is negative (before the throw), so physically only t = 6 matters. Units: t in seconds, h in metres — the red dot in the figure sits exactly on the t -axis at 6 . ✓
Worked example Example 8 — [Cell H] exam twist: rebuild from two remainders
When a polynomial p ( x ) is divided by ( x − 1 ) the remainder is 5 , and divided by ( x + 2 ) the remainder is − 4 . Find the remainder when p ( x ) is divided by ( x − 1 ) ( x + 2 ) .
Forecast: dividing by a degree-2 thing means the remainder can be degree 1 : shape r ( x ) = c x + d . Guess whether c is positive.
Write the general division statement. p ( x ) = ( x − 1 ) ( x + 2 ) q ( x ) + c x + d .
Why this step? The remainder's degree must be less than the divisor's degree 2 , so at most 1 : a line c x + d .
Kill the big product by substituting the two roots. At x = 1 and x = − 2 the ( x − 1 ) ( x + 2 ) term is 0 , leaving only c x + d :
p ( 1 ) = c + d , p ( − 2 ) = − 2 c + d .
Why this step? Same "make the divisor vanish" trick as the basic theorem — now applied at both roots.
Feed in the known remainders. From the given data p ( 1 ) = 5 and p ( − 2 ) = − 4 :
c + d = 5 , − 2 c + d = − 4.
Solve. Subtract: 3 c = 9 ⇒ c = 3 , then d = 2 .
Answer: remainder = 3 x + 2 .
Verify: at x = 1 : 3 ( 1 ) + 2 = 5 ✓; at x = − 2 : 3 ( − 2 ) + 2 = − 4 ✓. Both original single-divisor remainders reproduced.
Mnemonic The one habit that clears the whole matrix
"Zero the divisor, then plug." For any divisor — ( x − 2 ) , ( x + 3 ) , ( 2 x − 1 ) , plain x — first find the x that makes it 0 , then substitute. Every cell A–H is that same move, sometimes twice.
Recall Self-test (reveal after guessing)
Divisor ( x + 5 ) , which value do you substitute? ::: x = − 5
Divisor ( 3 x − 2 ) , which value do you substitute? ::: x = 3 2
Remainder when any p ( x ) is divided by x ? ::: the constant term p ( 0 )
( x − a ) is a factor exactly when…? ::: p ( a ) = 0
Dividing by a degree-2 polynomial, the remainder has degree at most…? ::: 1 (a line c x + d )