Zeroes And Coefficients Of A Polynomial: Rules

#Algebra
TL;DR
The relationship between zeroes and coefficients of a polynomial lets you read the sum and product of the roots straight off the coefficients, without solving for the roots at all. For a quadratic $ax^2 + bx + c$ the zeroes sum to $-\frac{b}{a}$ and multiply to $\frac{c}{a}$; for a cubic $ax^3 + bx^2 + cx + d$ the zeroes sum to $-\frac{b}{a}$, their pairwise products sum to $\frac{c}{a}$, and all three multiply to $-\frac{d}{a}$. The same pattern, with signs that flip term by term, extends to every degree and is known as Vieta's formulas.
BT
Bhanzu TeamLast updated on September 9, 202613 min read

What Is The Relationship Between Zeroes And Coefficients Of A Polynomial?

The relationship between zeroes and coefficients of a polynomial is a set of formulas that express the sum and product of the roots directly in terms of the coefficients. A zero (or root) is a value of $x$ that makes the polynomial equal to zero. A coefficient is a number multiplying a power of $x$ in the standard form.

The key idea is that the roots and the coefficients are not independent. Once the roots are fixed, the coefficients are forced, and once the coefficients are fixed, the roots are forced. The relationship is the dictionary that translates between the two.

We will use two running examples throughout:

$$q(x) = 2x^2 - 8x + 6, \qquad c(x) = x^3 - 6x^2 + 11x - 6$$

The first is a quadratic with leading coefficient $a = 2$; the second is a cubic in standard form. By the end you will read their root sums and products without solving either one.

What Are Zeroes And Coefficients, Exactly?

Before the formulas, two definitions have to be airtight, because most errors trace back to a shaky version of one of them.

  • Coefficients are the numbers attached to each power of $x$ when the polynomial is written in standard form, highest power first. In $2x^2 - 8x + 6$, the coefficient of $x^2$ is $2$, the coefficient of $x$ is $-8$, and the constant term is $6$. The sign travels with the number: the coefficient is $-8$, not $8$.

  • Zeroes are the inputs that make the polynomial evaluate to $0$. They are the same as the zeros of a polynomial you find by factoring or by the quadratic formula. Graphically, real zeroes are exactly where the curve meets the x-axis.

One fact ties the two together and explains why the relationship exists at all: a polynomial of degree $n$ has exactly $n$ zeroes, counting repeats and complex ones. A quadratic has two, a cubic has three. That count is what makes a clean sum-and-product rule possible.

What Is The Relationship For A Quadratic Polynomial?

For a quadratic $ax^2 + bx + c$ with zeroes $\alpha$ and $\beta$, the two relationships are:

$$\alpha + \beta = -\frac{b}{a}, \qquad \alpha\beta = \frac{c}{a}$$

The sum carries a minus sign and uses the middle coefficient; the product has no minus sign and uses the constant. Both divide by the leading coefficient $a$, which is the step students most often skip.

Example 1: Read the sum and product of $q(x) = 2x^2 - 8x + 6$.

Here $a = 2$, $b = -8$, $c = 6$. Apply the formulas directly:

$$\alpha + \beta = -\frac{b}{a} = -\frac{-8}{2} = 4$$

$$\alpha\beta = \frac{c}{a} = \frac{6}{2} = 3$$

Check against the actual roots. Factoring gives $2x^2 - 8x + 6 = 2(x-1)(x-3)$, so the zeroes are $1$ and $3$. Their sum is $4$ and their product is $3$, matching both formulas. This mirrors the roots of a quadratic equation you would get from the quadratic formula, reached here without any square roots.

Final answer: sum $= 4$, product $= 3$.

Notice that if you had forgotten to divide by $a = 2$, you would have reported a sum of $8$ and a product of $6$, both wrong. The leading coefficient matters.

What Is The Relationship For A Cubic Polynomial?

A cubic has three zeroes, so it needs three relationships. For $ax^3 + bx^2 + cx + d$ with zeroes $\alpha$, $\beta$, $\gamma$:

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

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

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

The middle line is the one no quadratic prepares you for: it is not a plain sum or a plain product, but the sum of the products taken two at a time. Skipping it is the classic cubic mistake.

Example 2: Read all three from $c(x) = x^3 - 6x^2 + 11x - 6$.

Here $a = 1$, $b = -6$, $c = 11$, $d = -6$.

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

$$\alpha\beta + \beta\gamma + \gamma\alpha = \frac{11}{1} = 11$$

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

This cubic factors as $(x-1)(x-2)(x-3)$, so its zeroes are $1$, $2$, and $3$. Verify each line: the sum $1+2+3 = 6$; the pairwise sum $(1)(2)+(2)(3)+(3)(1) = 2+6+3 = 11$; the product $(1)(2)(3) = 6$. All three agree. For the full method of locating those roots first, see zeros of a cubic polynomial.

What Is The General Pattern Across Every Degree?

The quadratic and cubic rules are two rows of a single pattern that runs through every degree. For a polynomial $a_n x^n + a_{n-1} x^{n-1} + \dots + a_1 x + a_0$ with zeroes $\alpha_1, \alpha_2, \dots, \alpha_n$, the pattern reads:

$$\text{sum of the roots} = -\frac{a_{n-1}}{a_n}$$

$$\text{sum of products taken two at a time} = \frac{a_{n-2}}{a_n}$$

$$\text{sum of products taken three at a time} = -\frac{a_{n-3}}{a_n}$$

and so on, with the product of all $n$ roots equal to $(-1)^n \frac{a_0}{a_n}$. These are Vieta's formulas.

Two features carry the whole pattern. First, every ratio divides by the leading coefficient $a_n$. Second, the sign alternates: minus, plus, minus, plus, as you move from one-at-a-time to two-at-a-time to three-at-a-time. That alternation is why the quadratic product ($c/a$) is positive while the cubic product ($-d/a$) is negative, the next term in the sequence.

Table: The same pattern, read across degrees.

Root quantity

Quadratic ($ax^2+bx+c$)

Cubic ($ax^3+bx^2+cx+d$)

General sign

Sum of roots

$-\dfrac{b}{a}$

$-\dfrac{b}{a}$

minus

Sum of pairwise products

(only one product)

$\dfrac{c}{a}$

plus

Product of all roots

$\dfrac{c}{a}$

$-\dfrac{d}{a}$

$(-1)^n$

Read the last column top to bottom and the alternating sign becomes obvious. Learn the pattern once and you never memorise a separate rule per degree again.

How Do You Derive These Relationships From Factored Form?

The formulas are not handed down from nowhere. They fall out the moment you multiply a polynomial's factored form back into standard form.

Take a monic quadratic with roots $\alpha$ and $\beta$. Its factored form is $(x - \alpha)(x - \beta)$. Expand it:

$$(x - \alpha)(x - \beta) = x^2 - (\alpha + \beta)x + \alpha\beta$$

Line this up against $x^2 + bx + c$. The coefficient of $x$ is $-(\alpha + \beta)$, so $b = -(\alpha+\beta)$, which rearranges to $\alpha + \beta = -b$. The constant is $\alpha\beta$, so $\alpha\beta = c$. Divide through by the leading coefficient when it is not $1$, and you recover $-\frac{b}{a}$ and $\frac{c}{a}$.

The cubic works the same way. Expanding $(x-\alpha)(x-\beta)(x-\gamma)$ gives:

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

Match it against $x^3 + bx^2 + cx + d$ term by term and every relationship appears, sign and all. This is the reason the pattern generalises: expanding a product of $n$ factors always produces these symmetric combinations of the roots, in this alternating-sign order.

How Do You Verify Zeroes Or Reconstruct A Polynomial?

The relationship runs in both directions, and each direction is a genuinely useful tool.

Verifying claimed zeroes. Suppose someone claims the zeroes of $q(x) = 2x^2 - 8x + 6$ are $1$ and $3$. Rather than re-solve, test both invariants at once: the sum should be $-\frac{b}{a} = 4$ and the product should be $\frac{c}{a} = 3$. Since $1 + 3 = 4$ and $1 \times 3 = 3$, the claim holds. Two quick checks confirm a full answer.

Reconstructing a polynomial from its zeroes. Run it backwards. To build a quadratic whose zeroes are $\alpha$ and $\beta$, use:

$$x^2 - (\alpha + \beta)x + \alpha\beta$$

Example 3: Build a quadratic with zeroes $5$ and $-2$.

The sum is $5 + (-2) = 3$ and the product is $(5)(-2) = -10$. Substitute:

$$x^2 - (3)x + (-10) = x^2 - 3x - 10$$

Any nonzero multiple, such as $2x^2 - 6x - 20$, has the same zeroes, since scaling every coefficient does not move the roots. This reconstruct step is exactly what you do when factorization of quadratic polynomials is run in reverse, and it is how exam questions phrase "find the polynomial whose zeroes are..."

Why Does This Relationship Exist?

The formulas can look like coincidence until you see the single mechanism underneath them. There is one, and it explains every degree at once.

  • Coefficients are built from roots. A polynomial can always be written as a product of its factors, $a(x - \alpha_1)(x - \alpha_2)\cdots$. Multiplying that product out is the only way the coefficients ever get their values. So the coefficients are not separate data; they are the results of combining the roots.

  • Expansion forces symmetric combinations. When you expand the product, the $x^{n-1}$ term collects one root from each way of "missing" a single factor, giving the sum of roots. The next term collects roots two at a time, and so on. The structure of multiplication produces exactly the symmetric sums Vieta's formulas name.

  • The signs come from the minus in each factor. Every factor is $(x - \alpha)$, carrying a minus. Picking an odd number of those minus signs flips the term negative, which is precisely why the sign alternates down the list.

So the relationship is not a lucky pattern spotted in examples. It is what expanding a product of linear factors must produce, every time, for a polynomial of any degree. The roots and coefficients are two descriptions of one object, and expansion is the bridge between them.

Who Discovered The Relationship Between Zeroes And Coefficients?

The rule carries the Latinised name of a 16th-century French lawyer who did mathematics on the side and codebreaking for his king.

Two mathematicians shaped the rule into its modern form:

  • François Viète (1540–1603, France) related the coefficients of a polynomial to sums and products of its roots, the result now called Vieta's formulas, though he stated it mainly for positive roots.

  • Albert Girard (1595–1632, France and the Netherlands) gave the general statement in 1629, writing the relationship for all the roots of a polynomial of any degree, including the alternating-sign pattern used today.

Where Is This Relationship Used In The Real World?

Reading roots from coefficients is more than an exam shortcut. The same idea appears wherever the roots of a polynomial carry meaning.

  • Fast answer checking: in any timed setting, confirming that a candidate set of roots has the right sum and product is far quicker than re-solving, which is why the relationship is a staple of competition mathematics and standardised tests.

  • Control systems and engineering: the stability of a circuit, an aircraft autopilot, or a robot arm depends on the roots of a "characteristic polynomial," and engineers routinely reason about those roots through the coefficients without solving for each one.

  • Signal processing: digital filters are described by polynomials whose roots (poles and zeros) set how the filter responds, and coefficient-level relationships let designers shift the roots predictably.

  • Error-detecting codes: some codes are built on polynomials over finite arithmetic, where the relationship between roots and coefficients underpins how errors are caught and located.

  • Numerical software: algorithms that estimate roots use the known sum and product as a running consistency check on their approximations.

One rule, learned on a quadratic in Class 10, quietly reappears in aircraft stability, audio filters, and the codes that keep a download intact. Mathematics reuses its best ideas across fields that look nothing alike.

What Are The Most Common Mistakes With Zeroes And Coefficients?

These four errors account for most lost marks on this topic, confirmed against exam-error guides and tutoring reviews of student work on the sum and product of roots.

Dropping the minus sign on the sum.

Where it slips in:

A student writes the sum of the roots as $\frac{b}{a}$ instead of $-\frac{b}{a}$, reading the coefficient off without the leading minus.

Don't do this:

Do not copy $b$ straight into the sum. The sum of roots always carries a negative sign.

The correct way:

Write $\alpha + \beta = -\frac{b}{a}$ and substitute the coefficient with its own sign. For $2x^2 - 8x + 6$, that is $-\frac{-8}{2} = 4$, where the two minus signs cancel.

Forgetting to divide by the leading coefficient.

Where it slips in:

A student treats $b$ and $c$ as the sum and product directly, ignoring $a$, which only shows up when $a \neq 1$.

Don't do this:

Do not assume the leading coefficient is $1$. Check it before reading anything off.

The correct way:

Divide every relationship by $a$. For $2x^2 - 8x + 6$ the product is $\frac{c}{a} = \frac{6}{2} = 3$, not $6$.

Forgetting the pairwise-sum term for cubics.

Where it slips in:

Moving up from quadratics, a student writes only a sum and a product for a cubic and omits the middle relationship entirely.

Don't do this:

Do not skip the sum of products two at a time. A cubic has three relationships, not two.

The correct way:

Include $\alpha\beta + \beta\gamma + \gamma\alpha = \frac{c}{a}$ between the sum and the product. For $x^3 - 6x^2 + 11x - 6$ that middle term is $11$.

Getting the product sign wrong for a cubic.

Where it slips in:

A student carries the quadratic habit "product $= \frac{c}{a}$, positive" into the cubic and writes $\frac{d}{a}$ instead of $-\frac{d}{a}$.

Don't do this:

Do not reuse the quadratic sign. The product sign depends on the degree.

The correct way:

Use the alternating pattern: the product of all roots is $(-1)^n \frac{a_0}{a_n}$, so a cubic ($n = 3$) takes a minus, giving $-\frac{d}{a}$.

Practice Problems On Zeroes And Coefficients Of Polynomials

Try each before checking. Answers follow every problem.

  1. For $x^2 - 7x + 12$, find the sum and product of the zeroes without solving.
    (Answer: sum $= 7$, product $= 12$.)

  2. For $3x^2 + 6x - 9$, find the sum and product of the zeroes.
    (Answer: sum $= -\frac{6}{3} = -2$, product $= \frac{-9}{3} = -3$.)

  3. Build a quadratic whose zeroes are $4$ and $-3$.
    (Answer: sum $= 1$, product $= -12$, so $x^2 - x - 12$.)

  4. For the cubic $x^3 - 4x^2 + x + 6$, find the sum of the zeroes, the sum of pairwise products, and the product.
    (Answer: sum $= 4$, pairwise sum $= 1$, product $= -6$.)

  5. One zero of $x^2 - 5x + k$ is $2$. Use the sum relationship to find the other zero, then find $k$.
    (Answer: other zero $= 3$ since $2 + 3 = 5$; product gives $k = 2 \times 3 = 6$.)

  6. The zeroes of $2x^3 + \ldots$ are $1$, $-1$, and $3$ for a monic cubic. Reconstruct the monic polynomial.
    (Answer: sum $= 3$, pairwise sum $= (1)(-1)+(-1)(3)+(3)(1) = -1$, product $= -3$, so $x^3 - 3x^2 - x + 3$.)

Where Should You Go Next After This?

The link between roots and coefficients opens straight into the rest of polynomial algebra, and a few natural doors lead onward.

  1. Zeros of a polynomial. Learn the methods that find the roots the relationship then lets you check.

  2. Cubic polynomials. Go deeper on the degree where the pairwise-sum term first appears, with fuller worked cases.

  3. Quadratic equations. Connect the sum and product back to the quadratic formula and factoring.

If your child is building these foundations, a live Bhanzu trainer teaches the relationship starting from the "why" (expanding factored form) so the signs stop being something to memorise, inside the Bhanzu algebra program.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is the relationship between zeroes and coefficients of a polynomial?
It is a set of formulas giving the sum and products of the roots in terms of the coefficients. For a quadratic the zeroes sum to $-\frac{b}{a}$ and multiply to $\frac{c}{a}$; higher degrees follow the same alternating-sign pattern known as Vieta's formulas.
Why is there a minus sign in the sum of zeroes?
Because each factor is written as $(x - \alpha)$. When you expand the product, the coefficient of the second-highest power collects the roots with an overall minus, so the sum comes out as $-\frac{b}{a}$ rather than $\frac{b}{a}$.
How does the relationship between zeroes and coefficients of a polynomial work for a cubic?
A cubic $ax^3 + bx^2 + cx + d$ has three relationships: the roots sum to $-\frac{b}{a}$, their pairwise products sum to $\frac{c}{a}$, and all three multiply to $-\frac{d}{a}$. The pairwise middle term is the piece with no quadratic equivalent.
Can I use this without finding the roots?
That is the whole point. You read the sum and product straight from the coefficients, which is why the relationship is used to check answers and to build a polynomial from given zeroes.
What is the difference between a zero and a coefficient?
A coefficient is a number written in front of a power of $x$ in standard form. A zero is a value of $x$ that makes the whole polynomial equal $0$. The relationship connects the two.
What happens if the leading coefficient is 1?
Then $a = 1$ and the formulas simplify: the sum is just $-b$ and the product is $c$ (for a quadratic), since dividing by $1$ changes nothing. This monic case is where the factored-form derivation is easiest to see.
✍️ 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 →