Computing functions of roots without computing roots

Once in a while it’s necessary to calculate some function of the roots of a polynomial, and it may be possible to do this without first calculating the roots.

Quadratics

The quadratic formula gives explicit solutions to the equation

ax^2 + bx + c = 0

The two solutions for x are

x = \frac{-b \pm \sqrt\Delta}{2a}
where

\Delta = b^2 - 4ac

The awkward part is taking the square root of the discriminant Δ. But that’s not necessary if you only need to know the sum or the product of the roots.

The sum of the two roots is simply –b/a because the terms involving the discriminant cancel out.

The product of the roots works out to be c/a.

In my previous post, I needed the difference of two roots. This isn’t quite as simple as the sum, but it works out to √Δ/ a.

Higher-order polynomials

There are simple expressions for the sum and product of polynomial roots in general.

The sum of the roots is the negative of ratio of the second coefficient to the first. So for a cubic equation

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

the sum of the roots is again –b/a, just as in the quadratic case.

The product of the roots is the ratio of the last coefficient to the first, with a negative sign for odd degree polynomials. So in the cubic case, the product of the roots is –d/a.

More formal

To use symbols rather than words, let p(x) be the polynomial

p(x) = a_nx^n + a_{n-1}x^{n-1} + \cdots + a_0 = \sum_{i=0}^na_ix^i

and number the roots r1 through rn. Then

\begin{align*} \sum_{i=1}^n r_i &= -\frac{a_{n-1}}{a_n} \\ \prod_{i=1}^n r_i &= (-1)^n\frac{a_0}{a_n} \\ \end{align*}

History

The theorem above goes back to François Viète (1540 – 1603) and is known as the first and last of Vieta’s formulas. (There are others in between. We’ll get to that shortly.) The formulas are called Vieta’s formulas rather than Viète’s formulas because the former is based on the Latinized form of his name, Franciscus Vieta.

As I wrote about here, Viète discovered the following infinite product for π:

\frac{2}{\pi} = \frac{\sqrt{2}}{2}\frac{\sqrt{2+\sqrt{2}}}{2}\frac{\sqrt{2 + \sqrt{2+\sqrt{2}}}}{2} \cdots

Generalization

I don’t know whether Vieta’s formulas in their full generality go back to Viète. Often a pioneer blazes the trail and someone else comes behind them to improve the trail.

The sum of the roots of a polynomial is the sum of all products of roots involving one term. The product is the sum of all products of roots involving n terms. One could ask for the sum of all roots involving an intermediate number of terms. For example, if the roots of the cubic

equation

ax^2 + bx + c = 0

are α. β, and γ, one could as for the sum of all products of two roots

\alpha\beta + \beta\gamma + \alpha\gamma

and this turns out to be c/a.

If we number the roots of our polynomial r1 through rn then the sum of all distinct products of k roots is given by

\sum_{1\le i_1 < i_2 < \cdots < i_k\le n} \left(\prod_{j = 1}^k r_{i_j}\right)=(-1)^k\frac{a_{n-k}}{a_n}

The left-hand side of the equation above is complicated, but it amounts to the sum of all distinct products roots taken k at a time.

Proof

The proof is actually quite simple. Start by writing the polynomial in factored form.

p(x) = a_n\prod_{i=1}^n(x - r_i)

Now imagine multiplying out the product. Each term in the product comes from selecting either an x or a –r from each term and adding up all the possibilities.

The coefficient of xn-1 comes from summing all ways of selecting an x from all terms except one and selecting one negative root term. So the sum of the negatives of the roots is an-1 divided by the an term in front of the product. This proves the first Vieta formula.

The proof for the kth Vieta formula comes from applying the analogous combinatorial argument to the coefficient of xnk.

Discussion

Vieta’s formulas are very clever even though they’re simple to prove.

The quadratic case can be proved by brute force: find the roots, the compute their sum and product. It would be possible, but difficult, to do the same for the cubic case, though I don’t know whether Viète ever saw the formula for the roots of a cubic equation because he and Cardano were contemporaries. The case for fourth degree polynomials would be even harder, and the case for higher degree polynomials would be impossible even in principle.

It would be an understandable mistake to believe you have to generalize the quadratic formula to generalize the theorem about sums and product of roots. But you don’t. It’s common in mathematics to have a flash of insight, realizing that you don’t have to calculate something that it seems you have to calculate. Maybe the lack of convenient formulas for higher roots led Vieta to look at the problem more abstractly.

Vieta’s result is more impressive when you realize how awkward mathematical notation was in his day. Algebra didn’t even use parentheses until Vieta introduced them.