I have the following quartic polynomial equation, where $U$ and $V$ are positive real numbers:
$$ x^4 + \left(\frac{13}{6} × U\right) x^3 + \left(\frac{3}{2} × U^2\right) x^2 + \left(\frac{1}{3} × U^3\right) x - V = 0 $$
It has one positive real solution. When I go through the process for solving a quartic given on Wikipedia, or ask WolframAlpha to solve it, the result I get uses only square roots and cube roots.
Is there a way to solve this quartic that uses quartic roots?
The solution to a linear polynomial (degree 1) uses linear roots (degree $\frac{1}{1}$), the solution to a quadratic polynomial (degree 2) uses square roots (degree $\frac{1}{2}$), and the solution to a cubic polynomial (degree 3) uses cube roots (degree $\frac{1}{3}$). I want to be able to continue this pattern and find a way to write the solution to my quartic polynomial (degree 4) using quartic roots (degree $\frac{1}{4}$).
For example, the above quartic is part of the following sequence of polynomial equations:
- $x − V = 0$
- $x × \left(x + \frac{1}{1} × U\right) − V = 0$
- $x × \left(x + \frac{1}{1} × U\right) × \left(x + \frac{1}{2} × U\right) − V = 0$
- $x × \left(x + \frac{1}{1} × U\right) × \left(x + \frac{1}{2} × U\right) × \left(x + \frac{2}{3} × U\right) − V = 0$
They all have one positive real solution, the first three of which are as follows:
- $x = V$
- $x = \sqrt[2]{V + \left(\frac{U}{2}\right)^2} − \frac{U}{2}$
- $x = \sqrt[3]{\frac{V}{2} + \sqrt[2]{\left(\frac{V}{2}\right)^2 − \left(\frac{\left(\frac{U}{2}\right)^2}{3}\right)^3}} + \sqrt[3]{\frac{V}{2} − \sqrt[2]{\left(\frac{V}{2}\right)^2 − \left(\frac{\left(\frac{U}{2}\right)^2}{3}\right)^3}} − \frac{U}{2}$
For these first three solutions, they can be written in such a way that there is a clear progression in the structure. The first has an invisible first-order root; the second has a square root, with the invisible first-order root inside it; and the third has two cube roots, each of which contains a square root.
The fourth equation's solution as calculated by WolframAlpha is quite messy, as is to be expected for a quartic polynomial. It also uses only square roots and cube roots, with no quartic roots. I've tried rearranging it in a few different ways to see if I can get it to fit with the progression of the previous three, but I haven't had any success.
Can the positive real solution to the quartic equation be written as a sum of three or four quartic roots, each containing one or two cube roots which each contain a square root, to fit the pattern of the solutions to the other three equations?