Relationship Between Roots And Coefficients

#Algebra
TL;DR
The relationship between roots and coefficients lets you read the sum and product of an equation's solutions straight from its coefficients, without solving for the roots first. For a quadratic $ax^2 + bx + c = 0$ the roots sum to $-\frac{b}{a}$ and multiply to $\frac{c}{a}$. For a cubic $ax^3 + bx^2 + cx + d = 0$ the roots sum to $-\frac{b}{a}$, their pairwise products sum to $\frac{c}{a}$, and all three multiply to $-\frac{d}{a}$.
BT
Bhanzu TeamLast updated on September 9, 202610 min read

What Is The Relationship Between Roots And Coefficients?

The relationship between roots and coefficients is a set of formulas that connect the roots of a polynomial equation to the coefficients written in front of its terms. The roots are the values that make the equation equal to zero. The coefficients are the numbers multiplying each power of $x$.

The point of these formulas is speed. You can find the sum and the product of the roots without ever solving the equation, just by looking at three or four numbers. That is what makes this a recall tool rather than a solving method.

Two names travel with this idea. The formulas are often called Vieta's formulas, after the mathematician who first wrote the general pattern down, and in Indian textbooks the same content appears under "sum and product of roots."

Throughout this page, $a$ is always the leading coefficient, the number in front of the highest power of $x$. Dividing by $a$ is the step most students forget, so it sits inside every formula below on purpose.

What Are The Formulas For Roots And Coefficients?

Here is the whole relationship between roots and coefficients in one view. Read the row you need and stop.

Table 1: Sum and product of roots for the quadratic and the cubic, in standard form.

Equation (standard form)

Roots

Sum of roots

Sum of products in pairs

Product of roots

$ax^2 + bx + c = 0$

$\alpha, \beta$

$-\dfrac{b}{a}$

not applicable

$\dfrac{c}{a}$

$ax^3 + bx^2 + cx + d = 0$

$\alpha, \beta, \gamma$

$-\dfrac{b}{a}$

$\dfrac{c}{a}$

$-\dfrac{d}{a}$

Three habits make the table safe to use:

  • Sign flips on the odd steps. The sum takes a minus sign; the pairwise sum stays positive; the product takes a minus sign again for the cubic. The signs alternate as you go.

  • Every formula divides by $a$. When the equation is monic ($a = 1$) the division hides, but it never actually goes away.

  • The cubic keeps the middle term. The pairwise sum $\alpha\beta + \beta\gamma + \gamma\alpha = \frac{c}{a}$ is the term students drop most often.

What Is The Relationship Between Roots And Coefficients Of A Quadratic Equation?

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

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

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

Identify the coefficients first:

$a = 2, \quad b = -8, \quad c = 6$

Sum of the roots:

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

Product of the roots:

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

Check against the actual roots. The equation factors as $2(x-1)(x-3) = 0$, so the roots are $1$ and $3$. Their sum is $4$ and their product is $3$, exactly as the coefficients predicted.

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

Notice you never needed the roots of the quadratic equation themselves to get there. The coefficients carried the answer.

What Is The Relationship Between Roots And Coefficients Of A Cubic Equation?

A cubic $ax^3 + bx^2 + cx + d = 0$ with roots $\alpha$, $\beta$, and $\gamma$ carries three relationships instead of two. The extra one is the sum of the roots taken two at a time.

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

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

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

Example 2: Read the three quantities for $x^3 - 6x^2 + 11x - 6 = 0$.

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

Sum of the roots:

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

Sum of the pairwise products:

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

Product of the roots:

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

The roots of this cubic are $1$, $2$, and $3$. Their sum is $6$, their pairwise products give $1\cdot2 + 2\cdot3 + 1\cdot3 = 11$, and their product is $6$. All three match.

Final answer: sum $= 6$, pairwise sum $= 11$, product $= 6$.

How Do You Form An Equation From Its Roots?

The relationship runs in reverse too. Given the roots, you can build the equation, which is exactly what many exam questions ask. Keep the leading coefficient as $1$ unless a specific one is required.

For a quadratic with roots $\alpha$ and $\beta$:

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

For a cubic with roots $\alpha$, $\beta$, and $\gamma$:

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

Example 3: Build the quadratic whose roots are $5$ and $-2$.

Sum: $5 + (-2) = 3$. Product: $(5)(-2) = -10$.

Substitute into the pattern:

$$x^2 - (3)x + (-10) = 0 ;\Rightarrow; x^2 - 3x - 10 = 0$$

Example 4: Build the cubic whose roots are $1$, $2$, and $4$.

Sum: $1 + 2 + 4 = 7$. Pairwise sum: $1\cdot2 + 2\cdot4 + 1\cdot4 = 14$. Product: $1\cdot2\cdot4 = 8$.

$$x^3 - 7x^2 + 14x - 8 = 0$$

The signs in the pattern are the same alternating signs from the recall table, just read from the roots toward the coefficients instead of the other way round.

Why Does The Relationship Between Roots And Coefficients Hold?

The formulas are not a coincidence to be memorised. They fall out of one move: writing the equation in factored form and multiplying it back out.

A quadratic with roots $\alpha$ and $\beta$ can be written as $a(x - \alpha)(x - \beta) = 0$. Expanding the bracket gives a clear picture:

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

Now line this up against $ax^2 + bx + c$, term by term:

  • The $x$ term forces $b = -a(\alpha + \beta)$, so $\alpha + \beta = -\frac{b}{a}$.

  • The constant term forces $c = a\alpha\beta$, so $\alpha\beta = \frac{c}{a}$.

That is the whole reason. Multiplying the factors mixes the roots together into sums and products, and those combinations land in the coefficient slots. The cubic works the same way with an extra factor, which is where the pairwise term appears. The alternating signs come from the minus sign inside each $(x - \text{root})$ bracket.

Who Discovered The Relationship Between Roots And Coefficients?

The relationship between roots and coefficients carries the name of a French lawyer who did mathematics at night and broke enemy ciphers by day.

One more mathematician completed the picture:

  • Albert Girard (1595–1632, France and the Netherlands) stated the general pattern for all degrees in 1629, spelling out how each coefficient relates to the sums and products of the roots, well before the notation we use today existed.

Where Is The Relationship Between Roots And Coefficients Used In The Real World?

The relationship earns its keep anywhere the roots matter more than the messy business of finding them.

  • Fast answer-checking: in exams and in polynomial equations practice, checking that your roots sum to $-\frac{b}{a}$ catches an arithmetic slip in seconds.

  • Control systems and engineering: the stability of a circuit or an autopilot depends on the roots of a characteristic polynomial, and engineers read properties of those roots straight from the coefficients.

  • Signal processing: filters are designed by placing roots of a polynomial, then reading back the coefficients that build the filter.

  • Competition and olympiad math: whole problem types are solved by combining the sum and product of roots instead of finding the roots at all.

One compact rule, sitting between the coefficients you can see and the roots you often cannot, quietly links a school worksheet to an autopilot's stability check.

What Are The Most Common Roots And Coefficients Mistakes?

These four slips account for most lost marks on this topic, and they match the errors documented in university common-error guides and algebra mistake references.

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 straight off.

Don't do this:

Do not copy $b$ with its printed sign as the sum. The formula negates it.

The correct way:

Write $\alpha + \beta = -\frac{b}{a}$ every time. For $2x^2 - 8x + 6$, the sum is $-\frac{-8}{2} = 4$, not $-4$.

Forgetting to divide by the leading coefficient.

Where it slips in:

A student reads the product of a quadratic's roots as $c$ rather than $\frac{c}{a}$, which only works when $a = 1$.

Don't do this:

Do not assume the equation is monic. Check the number in front of the highest power first.

The correct way:

Divide by $a$ in every formula. For $3x^2 + 12x + 9$, the product is $\frac{9}{3} = 3$, not $9$.

Dropping the pairwise term in a cubic.

Where it slips in:

A student remembers the sum $-\frac{b}{a}$ and the product $-\frac{d}{a}$ but skips the middle relationship entirely.

Don't do this:

Do not treat the cubic like a quadratic with one extra root. It has three relationships, not two.

The correct way:

Include $\alpha\beta + \beta\gamma + \gamma\alpha = \frac{c}{a}$, the sum of the products taken two at a time. It comes from the $x$ term of the cubic.

Losing the sign of the product $-\frac{d}{a}$.

Where it slips in:

While reconstructing a cubic or reading its product, a student writes $\frac{d}{a}$ and forgets the leading minus.

Don't do this:

Do not carry the quadratic's positive product habit into the cubic.

The correct way:

Use $\alpha\beta\gamma = -\frac{d}{a}$ for the cubic. The sign alternates with the degree, so the product flips sign from quadratic to cubic.

Practice Problems On Roots And Coefficients

Try each one, then check the answer beside it.

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

  2. For $3x^2 + 6x - 9 = 0$, find the sum and product of the roots.
    (Answer: sum $= -2$, product $= -3$.)

  3. Build the quadratic (leading coefficient $1$) whose roots are $-3$ and $4$.
    (Answer: $x^2 - x - 12 = 0$.)

  4. For $x^3 - 6x^2 + 11x - 6 = 0$, find the sum and the product of the roots.
    (Answer: sum $= 6$, product $= 6$.)

  5. For $2x^3 - 4x^2 + 6x - 8 = 0$, find the sum of the roots and the product of the roots.
    (Answer: sum $= 2$, product $= 4$.)

  6. Build the cubic (leading coefficient $1$) whose roots are $1$, $-1$, and $2$.
    (Answer: $x^3 - 2x^2 - x + 2 = 0$.)

Where Should You Go Next After Roots And Coefficients?

This relationship is one tool in a larger equation-solving kit, and a few natural doors open from here.

  1. Roots of the quadratic equation. When the sum and product are not enough, the quadratic formula finds each root directly.

  2. The discriminant. Before finding roots, the discriminant tells you how many real roots an equation even has.

  3. Cubic polynomials. Go deeper on the degree-three case, its shapes, and its factoring.

  4. Factorization of quadratic polynomials. The reverse skill: turning a quadratic back into a product of its root factors.

If your child is building these foundations, a live Bhanzu trainer teaches the relationship between roots and coefficients starting from the "why" (factoring an equation apart, then reading it back) in 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 roots and coefficients of a quadratic equation?
For $ax^2 + bx + c = 0$, the roots sum to $-\frac{b}{a}$ and multiply to $\frac{c}{a}$. Both come straight from the coefficients, with no need to solve the equation.
What is the relationship between roots and coefficients of a cubic equation?
For $ax^3 + bx^2 + cx + d = 0$, the roots sum to $-\frac{b}{a}$, their pairwise products sum to $\frac{c}{a}$, and their full product is $-\frac{d}{a}$. The cubic simply adds the middle pairwise term to the quadratic pattern.
Are these the same as Vieta's formulas?
Yes. Vieta's formulas are the general version of this relationship for a polynomial of any degree; the quadratic and cubic cases are the two you meet first.
Do I always divide by the leading coefficient?
Yes. Every formula divides by $a$. It only looks optional when $a = 1$, because dividing by $1$ changes nothing.
Can I find the roots themselves from the sum and product?
For a quadratic you can, by solving the small system, or by building $x^2 - (\text{sum})x + (\text{product}) = 0$ and factoring it. For a cubic, the sum, pairwise sum, and product pin the equation down, but you still factor or use other methods to isolate each root.
Which curricula teach this relationship?
It appears in India's NCERT Class 10 (Polynomials) and again in Class 11 for higher degrees, and in the United States under the Common Core high-school standard CCSS A-APR, then recurs throughout later algebra.
✍️ 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 →