I’ve started studying the Tschirnhaus transformation and ran into a problem when the substitution degree is higher than two.
For example, for the cubic equation
$$ y^3 + p\,y + q = 0 $$
we can introduce the substitution
$$ z = y^2 + a\,y + b, $$
from which
$$ y^3 = z\,y - a\,y^2 - b\,y, \qquad y^2 = z - a\,y - b, $$
and substitute into the original equation to get a linear equation in $y$:
$$ (y^3 + p\,y + q = 0) \;\Longleftrightarrow\; (z\,y - a(z - a\,y - b) - b\,y + p\,y + q = 0) \;\Longleftrightarrow\; y = \frac{a\,z - a b - q}{z + a^2 + p - b}. $$
Plugging this back into $z = y^2 + a\,y + b$ and simplifying yields
$$ z^3 + (2p - 3b)\,z^2 + \bigl(a^2 p + p^2 + 3b^2 + 3a q - 4bp\bigr)\,z + \bigl(2b^2p + a^3q + apq - b^3 - q^2 - bp^2 - a^2bp -3abq\bigr) =0. $$
We can then eliminate the coefficients of $z^2$ and $z$ by imposing
$$ \begin{cases} 2p - 3b = 0,\\ a^2p + p^2 + 3b^2 + 3a q - 4b p = 0, \end{cases} $$
thereby reducing the equation to the form $z^3 - t = 0$.
However, when we use a cubic substitution
$$ z = y^3 + a\,y^2 + b\,y + c, $$
we end up needing to solve a quadratic in $y$, since the lowest power of $y$ we can express in terms of $z$ and lower powers of $y$ is $y^2$. For instance, for a quartic
$$ y^4 + p\,y^2 + q\,y + r = 0 $$
we write
$$ y^4 + p\,y^2 + q\,y + r = y\,(z - a\,y^2 - b\,y - c) + p\,y^2 + q\,y + r $$
$$ = z\,y - a(z - a\,y^2 - b\,y - c) - b\,y^2 - c\,y + p\,y^2 + q\,y + r \;\Longrightarrow\; (a^2 - b + p)\,y^2 + (z + ab - c + q)\,y + (ac - a\,z + r) = 0. $$
Solving this quadratic for $y$ gives
$$ y = \frac{-(z + a b - c + q) \pm \sqrt{(z + a b - c + q)^2 - 4\,(a^2 - b + p)\,(-a\,z + a\,c + r)}} {2\,(a^2 - b + p)}, $$
which substituted back into $z = y^3 + a\,y^2 + b\,y + c$ yields an equation of degree six.
Therefore, I’m not clear how the Tschirnhaus transformation works in the case of, say, reducing
$$ y^5 + u\,y^2 + v\,y + w = 0 $$
to
$$ z^5 + d_4\,z + d_5 = 0 $$
via the substitution
$$ z = y^4 + p\,y^3 + q\,y^2 + r\,y + s $$
as described, for example, in this answer: https://math.stackexchange.com/a/542228/1641603
Any clarification would be greatly appreciated. Thanks!
Is it correct that, by substituting the expression for $z$ in terms of $y$ into
$$ z^5 + A z^4 + B z^3 + C z^2 + D z + E = 0 $$
and then reducing all powers $\ge5$ via
$$ y^5 = -u,y^2 - v,y - w, $$
we arrive at a quartic
$$ \lambda_1,y^4 + \lambda_2,y^3 + \lambda_3,y^2 + \lambda_4,y + \lambda_5 ;=;0, $$
and that, in order to express the original coefficients $A,B,C,D,E$ in terms of $u,v,w,p,q,r,s$, one must solve the system
$$ (\lambda_1,\lambda_2,\lambda_3,\lambda_4,\lambda_5) = (0,0,0,0,0)? $$
– Ivan_Rogers Jun 15 '25 at 08:33