In short

For a polynomial equation of degree n, the n roots are tied to the coefficients by Vieta's formulas: the sum of roots, the sum of pairwise products, the sum of triple products, and so on, up to the product of all n roots. Transformations — shifting, scaling, or reciprocating the variable — can simplify an equation without changing its essential character. Reciprocal equations have a special symmetry in their coefficients that lets you halve the degree. Equations with symmetric roots can be cracked by exploiting what stays unchanged when you permute the roots.

Solve x^5 - x = 0. You can factor out x to get x(x^4 - 1) = 0, factor again to get x(x^2-1)(x^2+1) = 0, and read off five roots: 0, 1, -1, i, -i. Not bad. Now try x^5 - x - 1 = 0. No obvious factors, no pattern, no formula to plug into. Yet this equation has five roots somewhere in the complex plane, and the coefficients know exactly where they are.

Here is the strange part: for quadratics, cubics, and quartics, there exist formulas that express the roots in terms of the coefficients using only arithmetic and radicals. At degree five, no such formula can exist — this was proved in the early 1800s, and it is one of the landmarks of abstract algebra. So for higher-degree equations, you need different strategies: spotting patterns in the coefficients, transforming the equation into a simpler form, and exploiting symmetry. This article is about those strategies.

Roots and coefficients: the general pattern

Consider the general polynomial equation of degree n:

a_n x^n + a_{n-1} x^{n-1} + \cdots + a_1 x + a_0 = 0

with a_n \neq 0. Let the n roots be r_1, r_2, \ldots, r_n. Then:

Vieta's formulas (general)

r_1 + r_2 + \cdots + r_n = -\frac{a_{n-1}}{a_n}
\sum_{i < j} r_i r_j = \frac{a_{n-2}}{a_n}
\sum_{i < j < k} r_i r_j r_k = -\frac{a_{n-3}}{a_n}
\vdots
r_1 r_2 \cdots r_n = (-1)^n \frac{a_0}{a_n}

The k-th formula relates the sum of all products of k roots taken at a time to the coefficient a_{n-k}. The signs alternate: minus for the sum of single roots, plus for pairwise products, minus for triples, and so on.

For a quartic (degree-4) equation ax^4 + bx^3 + cx^2 + dx + e = 0 with roots \alpha, \beta, \gamma, \delta, the four formulas are:

\alpha + \beta + \gamma + \delta = -\frac{b}{a}
\alpha\beta + \alpha\gamma + \alpha\delta + \beta\gamma + \beta\delta + \gamma\delta = \frac{c}{a}
\alpha\beta\gamma + \alpha\beta\delta + \alpha\gamma\delta + \beta\gamma\delta = -\frac{d}{a}
\alpha\beta\gamma\delta = \frac{e}{a}

The second formula has \binom{4}{2} = 6 terms — every way to pick two roots from four. The third has \binom{4}{3} = 4 terms. These numbers grow quickly with the degree, but the structure stays the same.

The pattern of Vieta's formulas from degree 2 through degree 4A table showing three rows for degree 2, 3, and 4. Each row lists the elementary symmetric functions and their relationship to the coefficients. The sign alternation pattern minus plus minus plus is highlighted. Vieta's formulas by degree Degree Sum of roots Pairwise products Product of all 2 −b/a c/a 3 −b/a c/a −d/a 4 −b/a c/a e/a signs alternate: −, +, −, +, ... the k-th formula uses the coefficient n−k places from the leading term
Vieta's formulas for degrees 2 through 4. The sum of roots always equals $-b/a$ (second coefficient, negated). The product of all roots equals $(-1)^n$ times the constant divided by the leading coefficient. The sign alternation is the same at every degree.

Transformation of equations

A powerful technique for working with higher-degree equations is to transform the equation — change the variable to produce a new equation that is easier to work with. The roots of the new equation are related to the original roots by the same transformation.

Shifting: removing a term

If you substitute x = y + h into a polynomial equation, the roots shift: if r was a root of the original, then r - h is a root of the new equation. By choosing h carefully, you can eliminate one term.

To remove the x^{n-1} term from a degree-n equation, set h = -a_{n-1}/(n \cdot a_n). The sum of the new roots becomes zero, and the second-highest term vanishes. You saw this in the cubic article — replacing x by t - b/(3a) turns a general cubic into a depressed cubic. The same idea works at any degree.

Take x^4 + 4x^3 + x^2 - 6x + 2 = 0. To remove the x^3 term, substitute x = y - 1 (since h = -4/(4 \cdot 1) = -1):

(y-1)^4 + 4(y-1)^3 + (y-1)^2 - 6(y-1) + 2 = 0

Expanding: y^4 - 4y^3 + 6y^2 - 4y + 1 + 4y^3 - 12y^2 + 12y - 4 + y^2 - 2y + 1 - 6y + 6 + 2 = 0

Collecting: y^4 + (-4 + 4)y^3 + (6 - 12 + 1)y^2 + (-4 + 12 - 2 - 6)y + (1 - 4 + 1 + 6 + 2) = 0

y^4 - 5y^2 + 6 = 0

The y^3 term is gone. Even better, this particular equation has no odd-power terms at all, so it is a quadratic in y^2: substitute u = y^2 to get u^2 - 5u + 6 = 0, which factors as (u - 2)(u - 3) = 0. So y^2 = 2 or y^2 = 3, giving y = \pm\sqrt{2} or y = \pm\sqrt{3}, and x = y - 1.

Scaling: clearing fractions or simplifying coefficients

Substituting x = ky multiplies each root by 1/k. This is useful for clearing fractions. If your equation has coefficients like 1, 3/2, 5/4, substituting x = y/2 and then multiplying through by the right power of 2 can produce integer coefficients.

Reciprocating: the substitution y = 1/x

Substituting y = 1/x replaces each root r by 1/r. This is useful when you need to find an equation whose roots are the reciprocals of the original roots. If the original equation is a_n x^n + a_{n-1} x^{n-1} + \cdots + a_0 = 0, multiply through by x^{-n} after substituting to get a_n y^{-n} + \cdots — which, after multiplying by y^n, becomes a_0 y^n + a_1 y^{n-1} + \cdots + a_n = 0. The coefficients are the original coefficients in reverse order.

Three standard equation transformations: shift, scale, and reciprocateThree boxes showing the three standard transformations. The shift box shows x equals y plus h mapping roots r to r minus h. The scale box shows x equals ky mapping roots r to r over k. The reciprocate box shows y equals 1 over x mapping roots r to 1 over r. Shift x = y + h root r → root r − h removes the x^(n−1) term when h = −a_(n−1)/(na_n) Scale x = ky root r → root r/k clears fractions, normalises leading coefficient Reciprocate y = 1/x root r → root 1/r reverses the coefficient sequence
The three standard transformations. Shifting by $h$ slides every root left or right. Scaling by $k$ stretches or compresses the roots. Reciprocating flips each root to its reciprocal and reverses the order of the coefficients.

Reciprocal equations

A polynomial equation is called a reciprocal equation if its coefficient sequence reads the same forwards and backwards. That is, a_k = a_{n-k} for every k. For example:

x^4 + 3x^3 + 5x^2 + 3x + 1 = 0

The coefficients are 1, 3, 5, 3, 1 — a palindrome. This symmetry has a powerful consequence: if r is a root, then 1/r is also a root. Here is why. Divide the entire equation by x^2 (which is valid since x = 0 is clearly not a root):

x^2 + 3x + 5 + \frac{3}{x} + \frac{1}{x^2} = 0

Group the terms that pair up:

\left(x^2 + \frac{1}{x^2}\right) + 3\left(x + \frac{1}{x}\right) + 5 = 0

Now substitute t = x + 1/x. Notice that x^2 + 1/x^2 = t^2 - 2 (from squaring t and subtracting 2). The equation becomes:

(t^2 - 2) + 3t + 5 = 0
t^2 + 3t + 3 = 0

A degree-4 equation has been reduced to a degree-2 equation. Solve the quadratic to find t, then for each value of t, solve x + 1/x = t (which is itself a quadratic: x^2 - tx + 1 = 0) to find x.

This trick works for any even-degree reciprocal equation. For odd-degree reciprocal equations, x = -1 is always a root (substitute and verify: the palindrome structure guarantees cancellation). Factor out (x + 1), and the remaining equation is an even-degree reciprocal equation.

Palindrome structure of reciprocal equation coefficientsThe coefficients 1, 3, 5, 3, 1 displayed in a row with curved arrows connecting the first to the last, the second to the second-last, and the middle standing alone — showing the palindrome symmetry. Reciprocal equation: coefficients form a palindrome 1 3 5 3 1 matched middle coefficient stands alone if r is a root, so is 1/r
The palindrome structure of a reciprocal equation. The coefficients mirror around the centre. This symmetry forces roots to come in reciprocal pairs: if $r$ is a root, then $1/r$ is also a root. The substitution $t = x + 1/x$ exploits this pairing to halve the degree.

Equations with symmetric roots

Some polynomial equations have roots that are related by a known symmetry — for instance, roots in arithmetic progression or roots that come in pairs r, -r.

Roots in arithmetic progression

If the three roots of a cubic x^3 + bx^2 + cx + d = 0 are in arithmetic progression, you can write them as \alpha - d_0, \alpha, \alpha + d_0 for some common difference d_0. Their sum is 3\alpha = -b, so \alpha = -b/3. This tells you the middle root immediately, and the remaining two are found from the other Vieta formulas.

For four roots in arithmetic progression — say \alpha - 3d_0, \alpha - d_0, \alpha + d_0, \alpha + 3d_0 — the sum is 4\alpha, which equals -b/a. Again, the centre is pinned, and the common difference comes from the next formula.

Roots with equal-magnitude pairing

If an equation has the property that whenever r is a root, -r is also a root, then all the odd-power coefficients are zero (since the elementary symmetric functions of odd order vanish). This means the equation is actually a polynomial in x^2, which halves the effective degree — exactly the trick used for the quartic y^4 - 5y^2 + 6 = 0 in the transformation section above.

Interactive graph of x to the fourth minus 5x squared plus 4A coordinate plane showing the quartic y equals x to the fourth minus 5x squared plus 4. The curve crosses the x-axis at x equals minus 2, minus 1, 1, and 2 — four roots that come in plus-minus pairs. A draggable red point lets the reader explore the curve. x y −2 −1 1 2 drag the red point
The quartic $f(x) = x^4 - 5x^2 + 4 = (x^2 - 1)(x^2 - 4)$. The four roots $\pm 1$ and $\pm 2$ come in equal-magnitude pairs. Because every root $r$ is paired with $-r$, the equation has no odd-power terms — it is a quadratic in $x^2$. Drag the red point to see the curve cross zero at all four roots and notice the W-shape typical of a quartic with four real roots.

Two worked examples

Example 1: Solve $x^4 + 3x^3 + 5x^2 + 3x + 1 = 0$ (a reciprocal equation)

The coefficients 1, 3, 5, 3, 1 form a palindrome, so this is a reciprocal equation. Use the standard reduction.

Step 1. Since x = 0 is not a root (constant term is 1), divide through by x^2:

x^2 + 3x + 5 + \frac{3}{x} + \frac{1}{x^2} = 0

Why: dividing by x^2 is the key move that allows you to group symmetric pairs — terms equidistant from the centre of the palindrome.

Step 2. Group the matching pairs:

\left(x^2 + \frac{1}{x^2}\right) + 3\left(x + \frac{1}{x}\right) + 5 = 0

Why: the palindrome symmetry pairs x^2 with 1/x^2 and 3x with 3/x. The middle term 5 has no partner.

Step 3. Substitute t = x + 1/x. Then x^2 + 1/x^2 = t^2 - 2.

(t^2 - 2) + 3t + 5 = 0 \implies t^2 + 3t + 3 = 0

Why: the identity (x + 1/x)^2 = x^2 + 2 + 1/x^2 gives x^2 + 1/x^2 = t^2 - 2. The quartic collapses to a quadratic in t.

Step 4. Solve the quadratic in t:

t = \frac{-3 \pm \sqrt{9 - 12}}{2} = \frac{-3 \pm \sqrt{-3}}{2} = \frac{-3 \pm i\sqrt{3}}{2}

The values of t are complex. For each t, solve x + 1/x = t, i.e., x^2 - tx + 1 = 0, giving x = (t \pm \sqrt{t^2 - 4})/2.

Step 5. For t = (-3 + i\sqrt{3})/2: compute t^2 - 4 = (9 - 6i\sqrt{3} - 3)/4 - 4 = (6 - 6i\sqrt{3})/4 - 4 = (6 - 6i\sqrt{3} - 16)/4 = (-10 - 6i\sqrt{3})/4. The roots are complex.

Result. All four roots are complex (non-real). The palindrome structure guaranteed that the roots come in reciprocal pairs — and indeed, if r is a root, 1/r is too.

Reduction of a degree-4 reciprocal equation to a quadraticA flow diagram showing the reciprocal equation x to the fourth plus 3x cubed plus 5x squared plus 3x plus 1 equals zero being divided by x squared, then substituted with t equals x plus 1 over x, yielding the quadratic t squared plus 3t plus 3 equals zero. Degree 4 x⁴+3x³+5x²+3x+1 = 0 ÷ x² Grouped (x²+1/x²)+3(x+1/x)+5 t=x+1/x Degree 2 t²+3t+3 = 0 Coefficient palindrome 1 3 5 3 1 symmetry halves the degree: 4 → 2
The palindrome coefficients $1, 3, 5, 3, 1$ mirror perfectly. Dividing by $x^2$ and substituting $t = x + 1/x$ collapses the degree-4 equation to a degree-2 equation. The quartic has four complex roots that come in reciprocal pairs.

The palindrome structure is the signal. Whenever you see a coefficient sequence that reads the same forwards and backwards, the reciprocal equation technique will halve the degree.

Example 2: The equation $x^4 - 10x^3 + 35x^2 - 50x + 24 = 0$ has roots in arithmetic progression. Find them.

Step 1. Write the four roots as \alpha - 3d, \alpha - d, \alpha + d, \alpha + 3d for some centre \alpha and step size d. Their sum is 4\alpha.

Why: four terms in arithmetic progression with common difference 2d are spaced symmetrically around \alpha. Using \alpha \pm d and \alpha \pm 3d keeps the notation clean.

Step 2. Apply Vieta's: the sum of the four roots equals -(-10)/1 = 10. So 4\alpha = 10, giving \alpha = 5/2.

Why: the sum of roots is read directly from the second coefficient. This pins the centre of the progression.

Step 3. The product of all four roots equals 24/1 = 24. The four roots are (5/2 - 3d)(5/2 - d)(5/2 + d)(5/2 + 3d). Rearrange as two pairs:

\left(\frac{5}{2} - 3d\right)\left(\frac{5}{2} + 3d\right) = \frac{25}{4} - 9d^2
\left(\frac{5}{2} - d\right)\left(\frac{5}{2} + d\right) = \frac{25}{4} - d^2

Their product is \left(\frac{25}{4} - 9d^2\right)\left(\frac{25}{4} - d^2\right) = 24.

Why: grouping the roots into symmetric pairs (r - s)(r + s) = r^2 - s^2 eliminates the cross terms and produces a cleaner equation in d.

Step 4. Let u = d^2. Then \left(\frac{25}{4} - 9u\right)\left(\frac{25}{4} - u\right) = 24.

Expand: \frac{625}{16} - \frac{25u}{4} - \frac{225u}{4} + 9u^2 = 24

\frac{625}{16} - \frac{250u}{4} + 9u^2 = 24

\frac{625}{16} - \frac{1000u}{16} + 9u^2 = 24

Multiply by 16: 625 - 1000u + 144u^2 = 384

144u^2 - 1000u + 241 = 0

Using the quadratic formula: u = \frac{1000 \pm \sqrt{1000000 - 138816}}{288} = \frac{1000 \pm \sqrt{861184}}{288}.

\sqrt{861184} = \sqrt{16 \times 53824} = 4\sqrt{53824}. Since 232^2 = 53824, \sqrt{861184} = 928.

So u = \frac{1000 \pm 928}{288}. This gives u = 1928/288 = 241/36 or u = 72/288 = 1/4.

Taking u = d^2 = 1/4, so d = 1/2. The four roots are:

\frac{5}{2} - \frac{3}{2} = 1, \quad \frac{5}{2} - \frac{1}{2} = 2, \quad \frac{5}{2} + \frac{1}{2} = 3, \quad \frac{5}{2} + \frac{3}{2} = 4

Result. The four roots are 1, 2, 3, 4.

Four roots in arithmetic progression on the number line: 1, 2, 3, 4A number line from 0 to 5 with four marked points at 1, 2, 3, and 4, equally spaced. Arcs above show the common difference of 1. Below, the quartic curve y equals x to the fourth minus 10x cubed plus 35x squared minus 50x plus 24 crosses the axis at these four points. 0 1 2 3 4 5 d = 1 equally spaced roots → arithmetic progression
The four roots $1, 2, 3, 4$ sit at equal intervals on the number line — an arithmetic progression with common difference $1$ and centre $5/2$. Below, the quartic curve crosses the axis at all four points. The W-shape of the quartic is asymmetric because the curve eventually climbs steeply for large $x$.

The sum of roots immediately gave the centre \alpha = 5/2. The product of roots then determined the spacing. For this particular equation, both values of u give valid arithmetic progressions, but u = 1/4 produces the integer roots, confirming the factorisation (x-1)(x-2)(x-3)(x-4) = 0.

Common confusions

Going deeper

If you came here to learn Vieta's formulas for general polynomials, equation transformations, and reciprocal equations, you have the full toolkit — you can stop here. The rest is for readers who want to see why degree five is a boundary.

The impossibility at degree five

For degree two, three, and four, formulas exist that express the roots using only +, -, \times, \div, and n-th roots applied to the coefficients. At degree five, no such formula exists — and this is not a conjecture or a limitation of current knowledge. It is a theorem, proved in the early 1800s.

The proof rests on a branch of mathematics called Galois theory, named after a young French mathematician who developed it before dying at age twenty. The core idea: the symmetries of the roots of a polynomial form a mathematical structure called a group. For degree two, three, and four, this group has a special property (it is "solvable") that allows the roots to be peeled off one at a time using radicals. For the general degree-five polynomial, the group of symmetries is not solvable, and no radical formula can work.

This does not mean fifth-degree equations cannot be solved. They can — using elliptic functions, numerical methods, or other techniques. It means only that radicals (square roots, cube roots, etc.) are not powerful enough, by themselves, to reach the answer.

Newton's identities

Vieta's formulas give the elementary symmetric functions of the roots. Newton's identities connect these to the power sums p_k = r_1^k + r_2^k + \cdots + r_n^k. The first few Newton identities for a monic polynomial x^n + a_{n-1}x^{n-1} + \cdots + a_0 = 0 with elementary symmetric functions e_1, e_2, \ldots, e_n are:

p_1 = e_1
p_2 = e_1 p_1 - 2e_2
p_3 = e_1 p_2 - e_2 p_1 + 3e_3

Each power sum depends on all the previous power sums and elementary symmetric functions. These recurrences let you compute r_1^k + \cdots + r_n^k for any k without ever finding the individual roots — a technique that appears frequently in competition mathematics.

Where this leads next

Higher-degree equations sit at the crossroads of several algebraic ideas.