Factoring Cubic Polynomials — Methods & Examples

Factoring Cubic Polynomials — Methods & Examples

Algebra

TL;DR
To factor a cubic polynomial, three reliable methods cover almost every case — the Rational Root Theorem, the grouping method, and the sum/difference of cubes identities. This article walks through all three with three worked examples spanning Quick to Stretch, the mistakes that cost marks, and the people who built the framework.

Factoring cubic polynomials means writing a cubic ax³ + bx² + cx + d as a product of lower-degree factors — typically a linear factor times a quadratic, or three linear factors. The three reliable methods, in order of how often they apply:

  1. Rational Root Theorem + polynomial division — works for any cubic with integer or rational coefficients.
  2. Grouping — works when the cubic has four terms that pair into a common factor.
  3. Sum or difference of cubes — works when the cubic fits a³ ± b³.

For exam-level cubics with messy coefficients, Cardano's formula is the fallback. But in school algebra, the three methods above handle more than 95% of problems.

The Three Reliable Methods

Method 1 — Rational Root Theorem + Polynomial Division

The Rational Root Theorem says that if a polynomial with integer coefficients has a rational root ( \frac{p}{q} ) (in lowest terms), then p divides the constant term and q divides the leading coefficient.

Steps:

  1. List candidates: every ( \frac{p}{q} ) where p divides a₀ (constant) and q divides a₁ (leading coefficient).
  2. Test each candidate by substitution. If p(r) = 0, then r is a root and (x - r) is a factor.
  3. Divide the cubic by (x - r) using long division or synthetic division — result is a quadratic.
  4. Factor the quadratic with any standard method (factoring, completing the square, quadratic formula).

Method 2 — Grouping

Works when the cubic has four terms grouping into two pairs with a common factor.

Steps:

  1. Group the four terms into two pairs.
  2. Factor the greatest common factor from each pair.
  3. If the remaining binomial factor is the same in both pairs, factor it out.

Method 3 — Sum or Difference of Cubes

Two identities every algebra student memorises:

The trick is recognising when a cubic fits one of these patterns — usually when both terms are perfect cubes.

Try These — With the Wrong Path Shown First

Quick. Factor ( x^3 - 27 ).

Recognise: 27 = 3³. So ( x^3 - 27 = x^3 - 3^3 ), a difference of cubes.

Apply the identity: ( x^3 - 3^3 = (x - 3)(x^2 + 3x + 9) ).

Final answer: (x - 3)(x² + 3x + 9).

Standard (Wrong-Path-First). Factor ( x^3 - 6x^2 + 11x - 6 ).

Wrong path: the rusher tries grouping immediately: ( x^3 - 6x^2 + 11x - 6 = x^2(x - 6) + (11x - 6) )

The pair leftovers don't match — (x - 6) versus (11x - 6) — so grouping fails. Some students keep trying different groupings.

Correct path. Use the Rational Root Theorem instead. Constant = -6, leading coefficient = 1. Rational candidates: ±1, ±2, ±3, ±6.

Test x=1: 1 - 6 + 11 - 6 = 0. So ( (x - 1) ) is a factor.

Divide: ( x^3 - 6x^2 + 11x - 6 \div (x - 1) = x^2 - 5x + 6 ).

Factor the quadratic: ( x^2 - 5x + 6 = (x - 2)(x - 3) ).

Final answer: (x - 1)(x - 2)(x - 3).

Why Cubic Factoring Matters Beyond Algebra Class

"Every smooth curve in CAD is a factored cubic."

Cubic factoring underpins more of the modern world than most students suspect.

Where Intuition Breaks With Cubic Factoring

Mistake 1: Trying grouping when the structure doesn't support it.

Where it slips in: any cubic where the four terms don't pair into a common binomial factor.

Don't do this: try every grouping of ( x^3 - 6x^2 + 11x - 6 ) when no grouping cleanly produces a common factor.

Mistake 2: Misapplying the sum of cubes identity sign pattern.

Don't do this: trust your memory of the middle sign without checking.

Mistake 3: Stopping after one factor when the cubic has three roots.

Don't do this: just state that ( (x - 1) ) is a factor and stop there.

Cardano, Vieta, and the Cubic — A Short History

Gerolamo Cardano (1501–1576, Italy). Published the first general method for the cubic.

François Viète (1540–1603, France). Gave the cubic its Vieta's formulas — relations linking the roots of a polynomial to its coefficients.

Key Takeaways

Five Minutes of Practice

  1. Factor ( x^3 - 8 ).
  2. Factor ( x^3 - 7x^2 + 14x - 8 ) using the Rational Root Theorem.
  3. Factor ( x^3 + 2x^2 - 9x - 18 ) by grouping.