[Math] Alternate proof for Vieta’s formula (formula for the summing the roots of a polynomial)

alternative-proofpolynomials

I just saw Vieta's formula for the first time, where it was stated that given some polynomial
$$p(x)=a_nx^n+\cdots+a_0,$$

let $x_1,\ldots,x_n$ denote its roots. Then $$\sum_{i=1}^n x_i=-\frac{a_{n-1}}{a_{n}}.$$

I initially tried to use an inductive argument, starting with a linear base case, and supposing that the formula held for all polynomials of degree $m < n + 1$, and trying to move from here, by factoring out a term of $x$. This failed for what are perhaps obvious reasons.

My second attempt was successful, and I think I've found what is the standard proof, namely using the fundamental theorem of algebra to get linear factors, expanding the right side of the equation, setting the terms equal, and deriving the formula from there. This basic idea can be found in detail at The art of problem solving.

I'm interested in an alternate proof. To clarify, I'm not looking for a proof that doesn't depend on the fundamental theorem of algebra in any way at all, but simply a different method of proving the result.

Best Answer

If we let $r_1, .. r_n$ be the roots of $a_nx^n + .. + a_0$.

$(a_nx^n + .. + a_0)/(x - r_1) = a_nx^{n - 1} + (r_1a_n + a_{n - 1})x^{n - 2} + (r_1^2a_n + r_1a_{n - 1} + a_{n - 2})x^{n - 3} + .. + (r^{n - 2}_1a_n + .. + a_2)x + (r_1^{n - 1}a_n + .. + a_1)$

By inductive hypothesis, we have $\sum_{k = 2}^{n} r_k = -\dfrac{r_1a_n + a_{n - 1}}{a_n}$. The result falls out for $\sum_{k = 1}^{n} r_k$.

Likewise, by inductive hypothesis, $\prod_{k = 2}^n r_k = (-1)^{n - 1}\dfrac{r_1^{n - 1}a_n + .. + a_1}{a_n}.$ Then $\prod_{k = 1}^n r_k = (-1)^{n - 1}\dfrac{r_1^na_n + .. + r_1a_1}{a_n} = (-1)^{n - 1}\dfrac{-a_0}{a_n} = (-1)^n\dfrac{a_0}{a_n}$.

Related Question