Zeros of a Cubic Polynomial - Sum, Product, Roots

#Algebra
TL;DR
The zeros of a cubic polynomial $ax^3 + bx^2 + cx + d$ are the three values of $x$ that make it equal zero, always three when counted with multiplicity. This article derives the sum and product of those zeros from the coefficients, shows how to find them, explains the four possible root patterns, and works through six examples.
BT
Bhanzu TeamLast updated on August 18, 202610 min read

The Three Answers Hiding In One Curve

A cubic equation always has exactly three zeros, even when its graph crosses once. That single fact surprises most students, because the S-shaped curve of a cubic often meets the x-axis in only one visible spot. The other two zeros have not vanished; they are either sitting on the axis too or hiding as a pair of complex numbers.

Knowing there are always three answers changes how you solve. You never stop after finding one zero; you use it to unlock the rest.

What Are The Zeros Of A Cubic Polynomial?

The zeros of a cubic polynomial $p(x) = ax^3 + bx^2 + cx + d$ (with $a \neq 0$) are the values of $x$ for which $p(x) = 0$. They are also called the roots of the cubic equation, and geometrically they are the x-values where the curve meets the x-axis.

Two terms need pinning down first. A cubic polynomial is a polynomial of degree 3, so its highest power is $x^3$. Multiplicity counts how many times a zero repeats: if a factor $(x - r)$ appears twice, then $r$ is a zero of multiplicity 2. By the Fundamental Theorem of Algebra, a cubic has exactly three zeros when each is counted with its multiplicity, and this idea is the same one that defines the zeros of a function more generally.

How Many Zeros Does A Cubic Polynomial Have?

Exactly three, counted with multiplicity, and at least one of them is always real. Because complex roots of a real polynomial arrive in conjugate pairs, the count of real zeros is one or three, never two. That leaves four possible patterns.

  • Three distinct real zeros - the curve crosses the x-axis at three separate points.

  • A repeated real zero and one more - two zeros coincide (multiplicity 2) plus a third.

  • A triple real zero - all three coincide (multiplicity 3); the curve just touches and flattens.

  • One real zero and two complex conjugate zeros - the curve crosses once.

The curve runs from $-\infty$ to $+\infty$ (or the reverse), so it must cross the axis at least once - that is why a cubic can never have zero real roots.

What Are The Sum And Product Of Zeros Of A Cubic Polynomial?

The zeros connect to the coefficients through three relations, known as Vieta's formulas. For $ax^3 + bx^2 + cx + d = 0$ with zeros $\alpha$, $\beta$, and $\gamma$:

$$\alpha + \beta + \gamma = -\frac{b}{a}$$

$$\alpha\beta + \beta\gamma + \gamma\alpha = \frac{c}{a}$$

$$\alpha\beta\gamma = -\frac{d}{a}$$

Here is where they come from, so the signs are never a guess. If $\alpha$, $\beta$, $\gamma$ are the zeros, then

$$ax^3 + bx^2 + cx + d = a(x - \alpha)(x - \beta)(x - \gamma).$$

Expand the right side:

$$a(x - \alpha)(x - \beta)(x - \gamma) = a\left[x^3 - (\alpha + \beta + \gamma)x^2 + (\alpha\beta + \beta\gamma + \gamma\alpha)x - \alpha\beta\gamma\right].$$

Match the coefficient of each power of $x$ against $ax^3 + bx^2 + cx + d$:

$$b = -a(\alpha + \beta + \gamma) ;\Rightarrow; \alpha + \beta + \gamma = -\frac{b}{a}$$

$$c = a(\alpha\beta + \beta\gamma + \gamma\alpha) ;\Rightarrow; \alpha\beta + \beta\gamma + \gamma\alpha = \frac{c}{a}$$

$$d = -a,\alpha\beta\gamma ;\Rightarrow; \alpha\beta\gamma = -\frac{d}{a}.$$

The alternating signs are not a rule to memorise; they fall straight out of the expansion.

How Do You Find The Zeros Of A Cubic Polynomial?

The standard route has three moves, and it leans on the "always three zeros" fact.

Step 1 - Find one zero. Use the Rational Root Theorem: test candidates $\pm\frac{p}{q}$, where $p$ divides the constant $d$ and $q$ divides the leading coefficient $a$.

Step 2 - Divide it out. Once $x = r$ is a zero, $(x - r)$ is a factor. Use synthetic division or the remainder theorem to get the quotient quadratic.

Step 3 - Solve the quadratic. Factor it or apply the quadratic formula for the remaining two zeros.

When the zeros are known and you need the cubic instead, run the process backwards with Vieta's formulas - the approach shown in factoring cubic polynomials.

Examples Of Zeros Of A Cubic Polynomial

The set runs from checking a single zero, through the sign trap in Vieta's sum, to building a cubic from its zero data and reading a triple root.

Example 1

Is $x = 2$ a zero of $p(x) = x^3 - 3x^2 + 4$?

Substitute $x = 2$:

$$p(2) = (2)^3 - 3(2)^2 + 4 = 8 - 12 + 4 = 0.$$

Final answer: Yes, $x = 2$ is a zero of the cubic.

Example 2

Given that $(x + 1)$ is a factor, find all zeros of $x^3 + 6x^2 + 11x + 6$.

Divide by $(x + 1)$ to get the quotient quadratic:

$$x^3 + 6x^2 + 11x + 6 = (x + 1)(x^2 + 5x + 6).$$

Factor the quadratic:

$$x^2 + 5x + 6 = (x + 2)(x + 3).$$

So the full factorisation is $(x + 1)(x + 2)(x + 3)$.

Final answer: The zeros are ${-1, -2, -3}$, three distinct real zeros.

Example 3

Find the sum of the zeros of $x^3 - 6x^2 + 11x - 6$.

Wrong attempt. A student reads off $b = -6$ and writes the sum as $\frac{b}{a} = -6$, dropping the minus sign in Vieta's rule. That gives a sum of $-6$.

Check it against the actual zeros. This cubic factors as $(x - 1)(x - 2)(x - 3)$, so the zeros are $1$, $2$, $3$, and their sum is $6$, not $-6$. The sign was lost.

Correct. Apply the formula with its sign:

$$\alpha + \beta + \gamma = -\frac{b}{a} = -\frac{-6}{1} = 6.$$

Final answer: The sum of the zeros is $6$, matching $1 + 2 + 3$.

Example 4

Find the product of the zeros of $x^3 - 6x^2 + 11x - 6$.

Apply the product formula:

$$\alpha\beta\gamma = -\frac{d}{a} = -\frac{-6}{1} = 6.$$

Confirm with the zeros $1$, $2$, $3$:

$$1 \times 2 \times 3 = 6.$$

Final answer: The product of the zeros is $6$.

Example 5

Build a cubic polynomial whose zeros have sum $2$, sum of products taken two at a time $-7$, and product $-14$.

A monic cubic with zeros $\alpha$, $\beta$, $\gamma$ is

$$x^3 - (\alpha + \beta + \gamma)x^2 + (\alpha\beta + \beta\gamma + \gamma\alpha)x - \alpha\beta\gamma.$$

Substitute the three given values:

$$x^3 - (2)x^2 + (-7)x - (-14).$$

Simplify:

$$x^3 - 2x^2 - 7x + 14.$$

Final answer: $x^3 - 2x^2 - 7x + 14$. Students often stumble on the last term here, forgetting that subtracting $-14$ makes the constant $+14$; writing each Vieta value into its slot before simplifying keeps that sign straight.

Example 6

Find the zeros of $x^3 - 3x^2 + 3x - 1$ and state their nature.

Test $x = 1$:

$$p(1) = 1 - 3 + 3 - 1 = 0.$$

So $(x - 1)$ is a factor. Dividing gives

$$x^3 - 3x^2 + 3x - 1 = (x - 1)(x^2 - 2x + 1) = (x - 1)(x - 1)^2 = (x - 1)^3.$$

Final answer: The only zero is $x = 1$, a triple root (multiplicity 3). The curve touches the axis and flattens rather than crossing three separate points.

Why The Zeros Of A Cubic Polynomial Matter

"Read the roots straight from the coefficients."

The relations between roots and coefficients were first written down cleanly by François Viète (1540–1603, France), whose work let mathematicians describe a polynomial's zeros without solving for them one by one. That shortcut is still doing heavy lifting today.

  • Engineering equations of state. The van der Waals equation for a real gas is a cubic in volume, and near a phase change it has three real roots. Engineers keep the physically meaningful root and discard the rest, exactly the "three zeros, choose carefully" skill.

  • Control and stability. The behaviour of a control system is governed by the roots of its characteristic polynomial. Whether those roots are real or complex decides whether a system settles or oscillates.

  • Fast checks in exams. Vieta's sum and product let you verify a full solution in seconds, or answer "what is the product of the roots" without ever finding them.

Show a student that the sum of the zeros is sitting in plain sight as $-\frac{b}{a}$, and the coefficients stop looking like clutter and start looking like a summary of the roots.

Common Mistakes

Mistake 1: Stopping after the first zero

Where it slips in: Right after the Rational Root Theorem hands over one root.

Don't do this: Report that single value as "the zero" and move on.

The correct way: A cubic has three zeros. Divide out the factor and solve the resulting quadratic for the other two. The habit that fixes this is naming the target aloud - "three zeros" - before the first one is even found, so the work feels unfinished until all three appear.

Mistake 2: Dropping the sign in Vieta's formulas

Where it slips in: Writing the sum of zeros as $\frac{b}{a}$ instead of $-\frac{b}{a}$.

Don't do this: Copy the coefficient's sign straight into the formula.

The correct way: The sum carries a minus, the product carries a minus, and the middle relation is positive. Re-derive them once from $a(x - \alpha)(x - \beta)(x - \gamma)$ and the signs stop being a memory test. Learners who lean on memory rather than the expansion are the ones who lose this sign most.

Mistake 3: Forgetting complex and repeated zeros

Where it slips in: Concluding a cubic "has one zero" because its graph crosses once.

Don't do this: Count only the visible x-axis crossings.

The correct way: One crossing means one real zero; the other two are a complex conjugate pair. A curve that only touches the axis signals a repeated real zero. Always account for all three with multiplicity.

Conclusion

  • The zeros of a cubic polynomial are its three roots, counted with multiplicity, with at least one always real.

  • Vieta's formulas give the sum $-\frac{b}{a}$, the sum of products $\frac{c}{a}$, and the product $-\frac{d}{a}$, all from the coefficients.

  • Those relations come straight from expanding $a(x - \alpha)(x - \beta)(x - \gamma)$, so the signs are derived, not memorised.

  • The standard method is find one zero, divide it out, and solve the leftover quadratic.

  • A cubic's zeros can be three distinct reals, a repeated real, a triple real, or one real with two complex conjugates.

To go deeper into cubic roots with a teacher, explore Bhanzu's algebra tutor or a high school math tutor, and browse structured math tutoring for full support.

Practice These To Solidify Your Understanding

  1. Find all zeros of $x^3 - 7x + 6$ using the Rational Root Theorem.

  2. Without solving, find the sum and product of the zeros of $2x^3 - 4x^2 + 6x - 8$.

  3. Construct a cubic whose zeros are $2$, $-3$, and $5$.

If Problem 2 gives an unexpected sign, re-derive Vieta's relations from the factored form. Want a live Bhanzu trainer to walk through cubic zeros and Vieta's formulas? Book a free demo class.

Read More

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

How many zeros does a cubic polynomial have?
Exactly three, counted with multiplicity. At least one is always real.
What is the sum of the zeros of a cubic polynomial?
For $ax^3 + bx^2 + cx + d$, the sum of the zeros is $-\frac{b}{a}$.
What is the product of the zeros of a cubic polynomial?
It is $-\frac{d}{a}$ for the same standard form.
Can a cubic polynomial have all complex zeros?
No. Complex zeros come in conjugate pairs, so at most two of a cubic's three zeros are complex; at least one is real.
When does a cubic have all real and distinct zeros?
When its discriminant is positive, the three zeros are all real and different; the curve crosses the x-axis at three separate points.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →