Given a polynomial with roots $a, b, c, d, e$, find the polynomial whose roots are $abc, abd, abe, …$

galois-theorypolynomialsquinticsrootssymmetric-polynomials

Let $p(x)=x^5-4x^4+3x^3-2x^2+5x+1$ and say $a, b, c, d, e$ are the roots of $p$. Find the polynomial whose roots are $abc, abd, abe, acd, ace, ade, bcd, bce, bde, cde$.

By Viete's theorem we just need to find the values of the elementary symmetric functions corresponding to the ten roots. But each such function is a symmetric function of $a, b, c, d, e$, and hence can be written as a polynomial in the $5$ elementary symmetric functions coming from $a, b, c, d, e$, whose values are the coefficients of $p$. Thus it is possible to compute the coefficients of the desired polynomial without explicitly finding the values of $a, b, c, d, e$.

However, this will require $10$ different arduous computations. Is there a nifty way to do this?

Best Answer

A nifty way to get started; you want to compute the coefficients of a polynomial of degre $10$. The coefficient of $x^9$ is the negative of the sum of the roots, and by Vieta's formulae we can immediately read off $$abc+abd+abe+acd+ace+ade+bcd+bce+bde+cde=2,$$ from the original polynomial, so the coefficient of $x^9$ equals $-2$.

Similarly, the constant term is the product of all the roots, which is $$(abc)(abd)(abe)(acd)(ace)(ade)(bcd)(bce)(bde)(cde)=(abcde)^6=(-1)^6=1,$$ so the constant term equals $1$.

For the remaining steps, identities of the form $$(abc)(cde)=(abcde)c=-c,$$ go a long way in simplifying the computations; this shows that the coefficient of $x^8$ equals $-4$, and the coefficient of $x$ equals $-3$. Still a bit tedious, but no more than a few minutes worth of work.