What Does It Actually Mean to Factor a Cubic Polynomial?
Say you know a box's volume is x³ + 6x² + 11x + 6 cubic units. That's one expression. But you need three separate dimensions — length, width, height — to actually build the box. How do you pull three pieces out of one chunk?
You need three simpler expressions that multiply together to give x³ + 6x² + 11x + 6. Turns out they're (x + 1), (x + 2), and (x + 3). Multiply them back and you'll land on the original expression. Each factor is one dimension.
That's what factoring cubic polynomials is. You take a single polynomial of degree 3 and rewrite it as a product of smaller factors.
Cubic Polynomial — a polynomial where the highest power of the variable is 3. Standard form: ax³ + bx² + cx + d, where a ≠ 0. The numbers a, b, c, d are coefficients, and x is the variable.
The result of factoring a cubic is always one of two shapes: either one linear factor times one quadratic factor — like (x − 2)(x² + 5x + 3) — or three linear factors, like the box example above. If the quadratic piece has no real roots, you stop there. It doesn't split further.
I once watched a student spend ten minutes trying to factor a cubic the exact same way she'd factor a quadratic — just staring at it, trying to guess two numbers that multiply and add correctly. Cubics don't work that way. They need their own set of methods, which is what the rest of this article covers.
This topic shows up in Algebra 2 and Pre-Calculus in the US (CCSS HSA-APR.B.2 and HSA-APR.B.3), in Class 9–10 in the NCERT curriculum (Chapter 2: Polynomials), and across IGCSE Extended Mathematics and UK A-Level syllabi.
Visual Brief: Diagram showing x³ + 6x² + 11x + 6 being split into three rectangular dimensions labelled (x + 1), (x + 2), and (x + 3), forming a 3D box. Caption: "Factoring a cubic = finding the pieces that multiply to produce it."Alt text: Factoring cubic polynomials shown as finding three dimensions of a box
Why Every Cubic Polynomial Can Be Factored
Every cubic polynomial with real coefficients has at least one real root. No exceptions.
The reason is graphical. A cubic curve goes to positive infinity in one direction and negative infinity in the other. It has to cross the x-axis somewhere on the way. That crossing is a root. And if you have a root r, you have a factor: (x − r).
Visual Brief: Graph of y = x³ − 4x² + x + 6 crossing the x-axis at x = −1, x = 2, x = 3. Dotted lines drop from each crossing to the axis. Labels: (x + 1), (x − 2), (x − 3). Caption: "Each x-axis crossing reveals one factor."Alt text: Graph of cubic polynomial crossing x-axis at three roots showing factoring cubic polynomials visually
So every cubic can be written as (linear factor) × (quadratic factor). The quadratic might factor further into two linear factors, or it might be irreducible — meaning its discriminant is negative and it has no real roots. Either way, you're guaranteed at least one linear factor to start with.
This matters because it's the reason every method below actually works. You're never going to hit a cubic that just can't be factored at all.
Which Method Should You Use?
Five methods, one cubic. Most textbooks list them all and expect you to figure out which one applies. So here's a quick decision path.
First — is there a GCF across all terms? If yes, pull it out. That alone might reduce the problem to something simpler.
Second — count your terms. Two terms? Use the sum or difference of cubes identity. Four terms that pair naturally? Try grouping.
Third — if nothing above worked, go to the Rational Root Theorem. List the possible rational roots, test them, find one that makes the polynomial zero, and divide.
Visual Brief: Flowchart. Start: "Look at your cubic." First diamond: "GCF in all terms?" → Yes: "Factor it out." → No: "Only 2 terms?" → Yes: "Sum/Difference of Cubes." → No: "4 terms with natural pairs?" → Yes: "Grouping." → No: "Rational Root Theorem + Division."Alt text: Decision flowchart for choosing a method when factoring cubic polynomials
Method 1: Factor Out the Greatest Common Factor (GCF)
Check whether all terms share a common factor before doing anything else. A number, a variable, or both.
Factor 2x³ + 8x² + 6x.
Every term has 2x in common:
2x³ + 8x² + 6x = 2x(x² + 4x + 3)
Now factor the quadratic: x² + 4x + 3 = (x + 1)(x + 3)
Final answer: 2x(x + 1)(x + 3)
That took maybe 15 seconds. Without spotting the GCF, you'd be running through the Rational Root Theorem on a harder expression for no reason. I've seen this happen over and over — a student staring at something like 6x³ + 18x² + 12x, testing x = 1, x = −1, x = 2, getting frustrated, when all they needed was to pull out 6x first and the quadratic inside was easy. Close to half the students in a typical session make this exact mistake.
If every term has an x in it, you can factor out at least x. If the leading coefficient divides evenly into all other coefficients, pull that number out too.
Method 2: Factoring Cubic Polynomials by Grouping
Grouping works when your cubic has four terms that pair up — two terms sharing one common factor, the other two sharing a different one. If both pairs produce the same binomial, you're done.
Factor x³ − 4x² + 3x − 12.
Split into two groups:
(x³ − 4x²) + (3x − 12)
Factor each group:
x²(x − 4) + 3(x − 4)
Both groups have (x − 4). Factor it out:
(x − 4)(x² + 3)
Since x² + 3 has no real roots (you'd need x² = −3), that's fully factored.
Final answer: (x − 4)(x² + 3)
Grouping is the most satisfying method when it works. You can see the structure appear right in front of you. But not every cubic cooperates. If you try rearranging terms and no grouping produces a common binomial, move on to the Rational Root Theorem — don't force it.
Method 3: Sum of Cubes and Difference of Cubes
When a cubic polynomial has only two terms and both are perfect cubes, special identities apply.
Look at these:
x³ + 8 = (x + 2)(x² − 2x + 4)
x³ − 27 = (x − 3)(x² + 3x + 9)
The pattern: a binomial times a trinomial. The signs follow a sequence called SOAP — Same, Opposite, Always Positive. "Same" means the first sign matches the original. "Opposite" means the second sign flips. The last term is always positive.
The identities:
a³ + b³ = (a + b)(a² − ab + b²)
a³ − b³ = (a − b)(a² + ab + b²)
Here's one with coefficients. Factor 8x³ − 125.
Recognize that 8x³ = (2x)³ and 125 = 5³. Difference of cubes.
8x³ − 125 = (2x − 5)(4x² + 10x + 25)
The trinomial's discriminant is 100 − 400 = −300. Negative. Doesn't factor further.
Final answer: (2x − 5)(4x² + 10x + 25)
One thing students mix up constantly: x³ + 8 is not the same as (x + 2)³. Expand (x + 2)³ and you get x³ + 6x² + 12x + 8 — three extra terms. The sum of cubes identity only applies to expressions with exactly two terms, both perfect cubes. If you see four terms, you don't have a sum of cubes.
Can you factor x³ + 64? Try it before reading on.
64 = 4³, so x³ + 64 = (x + 4)(x² − 4x + 16).
Method 4: Factoring Cubic Polynomials Using the Rational Root Theorem
This is the method for everything else — when the cubic doesn't group, isn't a sum or difference of cubes, and doesn't have an obvious GCF. It works for any cubic polynomial with rational coefficients.
The theorem says: if a polynomial ax³ + bx² + cx + d has a rational root, that root must be a fraction where the numerator (top number) divides the constant term d and the denominator (bottom number) divides the leading coefficient a. That gives you a finite list of candidates to test.
Factor x³ − 2x² − 5x + 6.
Step 1: The constant term is 6, leading coefficient is 1. Possible rational roots: ±1, ±2, ±3, ±6.
Step 2: Test them. Start small.
x = 1: (1)³ − 2(1)² − 5(1) + 6 = 1 − 2 − 5 + 6 = 0 ✓
So (x − 1) is a factor.
Step 3: Divide x³ − 2x² − 5x + 6 by (x − 1). The result is x² − x − 6. (We'll cover the actual division process in the next section.)
Step 4: Factor the quadratic. x² − x − 6 = (x − 3)(x + 2).
Final answer: x³ − 2x² − 5x + 6 = (x − 1)(x − 3)(x + 2)
Start with ±1 and ±2 when testing. Most textbook problems are designed with at least one small integer root — the authors want factoring to be the hard part, not arithmetic.
Method 5: Dividing the Cubic by Its Linear Factor
Once you've found a root, you need to divide the cubic by the linear factor to get the quadratic. Two ways to do this.
Polynomial Long Division
Divide x³ − 2x² − 5x + 6 by (x − 1).
Divide x³ by x → x². Multiply x² by (x − 1) → x³ − x². Subtract from the original: (x³ − 2x²) − (x³ − x²) = −x².
Bring down −5x. Divide −x² by x → −x. Multiply −x by (x − 1) → −x² + x. Subtract: (−x² − 5x) − (−x² + x) = −6x.
Bring down +6. Divide −6x by x → −6. Multiply −6 by (x − 1) → −6x + 6. Subtract: 0.
Quotient: x² − x − 6. Remainder: 0.
Visual Brief: Standard polynomial long division bracket layout for (x³ − 2x² − 5x + 6) ÷ (x − 1), showing each divide-multiply-subtract-bring down cycle. Caption: "Same loop as long division with numbers: divide, multiply, subtract, bring down."Alt text: Polynomial long division step-by-step example for factoring cubic polynomials
The hardest part isn't the concept. It's signs. One wrong subtraction early on ruins everything downstream. Write out every subtraction step explicitly — don't do sign changes in your head.
Synthetic Division
Faster method. Works when dividing by (x − r). You only write the coefficients.
Same example. Root is r = 1. Coefficients: 1, −2, −5, 6.
1 | 1 −2 −5 6
| 1 −1 −6
|————————————————————
1 −1 −6 0
Bring down 1. Multiply by root (1 × 1 = 1), write under next coefficient, add (−2 + 1 = −1). Repeat. The bottom row gives the quotient coefficients: 1, −1, −6 → x² − x − 6. Last number is the remainder: 0.
Same answer, half the work. Synthetic division is what most US standardized tests expect.
Visual Brief: Synthetic division grid for x³ − 2x² − 5x + 6 ÷ (x − 1). Root (1) on the left. Three rows: coefficients, products, sums. Small arrows showing the multiply-and-add pattern. Caption: "Bring down, multiply, add. Repeat."Alt text: Synthetic division example for factoring cubic polynomials step by step
Worked Examples
Example 1 (Grouping)
Factor x³ + 5x² − x − 5.
Group: (x³ + 5x²) + (−x − 5)
Factor each group: x²(x + 5) − 1(x + 5)
Common binomial: (x + 5)(x² − 1)
Recognize x² − 1 as a difference of squares: (x + 1)(x − 1)
Final answer: (x + 5)(x + 1)(x − 1)
Example 2 (Sum of Cubes)
Factor 27x³ + 1.
27x³ = (3x)³, and 1 = 1³. Sum of cubes.
(3x + 1)(9x² − 3x + 1)
Discriminant of 9x² − 3x + 1: 9 − 36 = −27. Negative. Doesn't factor further.
Final answer: (3x + 1)(9x² − 3x + 1)
Example 3 (Rational Root Theorem + Synthetic Division)
Factor 2x³ − 3x² − 11x + 6.
Possible rational roots: ±1, ±2, ±3, ±6, ±1/2, ±3/2 (because leading coefficient is 2, you get fractions too).
Test x = 3: 2(27) − 3(9) − 11(3) + 6 = 54 − 27 − 33 + 6 = 0. Works.
Divide by synthetic division with r = 3:
3 | 2 −3 −11 6
| 6 9 −6
|————————————————————
2 3 −2 0
Quotient: 2x² + 3x − 2. Factor it: (2x − 1)(x + 2).
Final answer: (x − 3)(2x − 1)(x + 2)
Example 4 (Quadratic Factor Doesn't Split Neatly)
Factor x³ − 3x² + x + 1.
Only possible rational roots are ±1. Test x = 1: 1 − 3 + 1 + 1 = 0. It works.
1 | 1 −3 1 1
| 1 −2 −1
|————————————————————
1 −2 −1 0
Quotient: x² − 2x − 1. Discriminant: 4 + 4 = 8. Positive but not a perfect square, so the roots are irrational: x = 1 ± √2.
Over rationals: (x − 1)(x² − 2x − 1)
Over reals: (x − 1)(x − 1 − √2)(x − 1 + √2)
This is normal. Not every quadratic factor gives you clean integers. If the discriminant is positive, the roots are real but might be irrational. If it's negative, the quadratic is irreducible — you're done, stop factoring.
Common Mistakes When Factoring Cubic Polynomials
These are the mistakes we see most often across our 70,000+ students.
Skipping the GCF check
A student starts testing rational roots on 3x³ + 12x² + 9x. Eventually they get (x + 1)(3x² + 9x + 9). Technically not wrong, but not fully factored either. If they'd pulled out 3x first, the whole thing simplifies to 3x(x + 1)(x + 3). Faster, cleaner.
At Bhanzu, our trainers won't let a student touch the Rational Root Theorem until they've confirmed there's no GCF. It's a 5-second check that saves 5 minutes of unnecessary work. [Link to Bhanzu Algebra program]
Confusing sum of cubes with a perfect cube
x³ + 8 is NOT (x + 2)³. Expand (x + 2)³ and you get x³ + 6x² + 12x + 8 — that's four terms. x³ + 8 has two terms. It's a sum of cubes: (x + 2)(x² − 2x + 4). Different identity entirely.
Forgetting to test negative values
A student tries x = 1, 2, 3, 6 for x³ + 2x² − 5x − 6. Nothing works. They get stuck. But x = −1 gives (−1)³ + 2(−1)² − 5(−1) − 6 = −1 + 2 + 5 − 6 = 0. The possible roots always include negatives. Test both signs.
Sign errors in division
During long division, subtracting (−x² + x) but accidentally adding. One wrong sign early on cascades through everything. The fix is boring but effective: write out −(−x² + x) = x² − x explicitly. Every single time.
Thinking the quadratic factor must always split
It doesn't. x² + 2x + 4 has a discriminant of 4 − 16 = −12. Negative. No real roots. You're done. Don't spend ten minutes looking for factors that don't exist — check the discriminant first.
Factoring vs. Solving — They're Related but Not the Same
Students mix these up a lot, so it's worth being clear.
Factoring | Solving | |
|---|---|---|
You start with | An expression: x³ − 6x² + 11x − 6 | An equation: x³ − 6x² + 11x − 6 = 0 |
You find | Factors: (x − 1)(x − 2)(x − 3) | Roots: x = 1, x = 2, x = 3 |
The goal | Rewrite as a product | Find values of x that make it zero |
Factoring cubic polynomials is the tool. Solving is the goal. You factor first, then set each factor equal to zero and read off the roots. That's the whole connection.
Quick Reference — Formulas and Identities
Sum of cubes: a³ + b³ = (a + b)(a² − ab + b²)
Difference of cubes: a³ − b³ = (a − b)(a² + ab + b²)
Rational Root Theorem: possible rational roots of ax³ + bx² + cx + d are ±(factors of d) ÷ (factors of a)
Factor Theorem: if f(r) = 0, then (x − r) is a factor of f(x)
Discriminant check for the quadratic factor: if b² − 4ac < 0, the quadratic is irreducible over the reals. Stop factoring.
History note:
The problem of solving cubics goes back to 16th-century Italy. Niccolò Tartaglia and Gerolamo Cardano had a famous feud over who deserved credit for the general solution.
Cardano published what's now called Cardano's Formula, and Tartaglia accused him of breaking an oath of secrecy.
The formula itself is rarely used today - it's messy - but the factoring methods in this article trace back to the ideas those two fought over.
Was this article helpful?
Your feedback helps us write better content