We have the following theorems for denesting radicals of degree 2 and 3 :
Denesting theorem for degree 2 :
If $\alpha, \beta$ are the roots of the equation,
\begin{equation} x^2-ax+b = 0 \end{equation}
then
\begin{equation} \sqrt{\alpha} + \sqrt{\beta} = \sqrt{a + 2\sqrt{b}} \end{equation}
This theorem can easily be proved by using the Vieta formulas, and squaring both sides. It tells us that such nested radicals can be denested when the determinant is a perfect square ($a^2-4b^2 = n^2$).
Denesting theorem for degree 3 (from Ramanujan) :
If $\alpha, \beta,\gamma$ are the roots of the equation,
\begin{equation} x^3-ax^2+bx - 1 = 0 \end{equation}
then
\begin{align} \sqrt[3]{\alpha} + \sqrt[3]{\beta}+ \sqrt[3]{\gamma} &= \sqrt[3]{a + 6 + 3t} \\ \sqrt[3]{\alpha\beta}+\sqrt[3]{\beta\gamma}+\sqrt[3]{\gamma\alpha}&=\sqrt[3]{b+6+3t} \end{align}
where $t$ satisfy the equation
\begin{equation} t^3−3(a+b+3)t−(ab+6(a+b)+9)=0 \end{equation}
This theorem is well proved here, and allows to produce many nice identities, such as, $$\sqrt[3]{\cos\tfrac {2\pi}7}+\sqrt[3]{\cos\tfrac {4\pi}7}+\sqrt[3]{\cos\tfrac {8\pi}7}=\sqrt[3]{\tfrac 12\left(5-3\sqrt[3]7\right)}$$
Questions :
- How to generalize such denesting theorems to higher powers ?
- What nice identities can we generate ?
Let's take the case for degree 4. Let $\alpha, \beta,\gamma,\delta$ are the roots of the equation,
\begin{equation} x^4-ax^3+bx^2 -cx + 1 = 0 \end{equation}
then
\begin{equation} \sqrt[4]{\alpha} + \sqrt[4]{\beta}+ \sqrt[4]{\gamma} + \sqrt[4]{\delta} = \sqrt[4]{a + 4t + 6u + 12v} \end{equation}
where $t,u,v$ are
\begin{align} t &= \sum_{perm} \sqrt[4]{\alpha}^3\sqrt[4]{\beta} \\ u &= \sum_{perm} \sqrt[4]{\alpha}^2\sqrt[4]{\beta}^2 \\ v &= \sum_{perm} \sqrt[4]{\alpha}^2\sqrt[4]{\beta}\sqrt[4]{\gamma} \end{align}
which we can find by taking the LHS to the power 4, and using the multinomial theorem. It would be very nice if the $t,u,v$ where also to satisfy a polynomial equation of degree 4 (does it ?). If it so then we would have a theorem similar to the cubic and we could generate new identities.
However to verify if $t,u,v$ satisfy a quartic by elevating them to the power 4 is algebraically heavy and I have not been able to do it. I tried to use symmetrical polynomials to simplify computations.
I used the following PARI/GP code to find that, for $x^4-6x^3+11x^2-7x+1 = (x-1)(x^3-5x^2+6x-1)$, with real roots $\,0<\alpha<\beta<\gamma<\delta,\,$ then $s,t$ and $v$ are roots of irreducible $12$th degree polynomials while $u$ is a root of the cubic $x^3-3x^2-25x-29$ where $$ s := \sqrt[4]{\alpha} + \sqrt[4]{\beta}+ \sqrt[4]{\gamma} + \sqrt[4]{\delta} = \sqrt[4]{a + 4t + 6u + 12v + 24} $$ and where $\,t,u,v\,$ are homogeneous sums defined in the question.
I did not try to find a simpler example, but I am sure one can be found by a simple search.