w = (x + 2 * 4 / x) * (5 + 2 * 4 / x) | * x ^ 4
x ^ 4 = x ^ 2 * x ^ 2
w * x ^ 4 = x ^ 2 * (x + 2 * 4 / x) * x ^ 2 * (5 + 2 * 4 / x)
w * x ^ 4 = (x ^ 3 + 8 * x) * (5 * x ^ 2 + 8 * x)
w * x ^ 4 = (5 * x ^ 5 + 40 * x ^ 3 + 8 * x ^ 4 + 64 * x ^ 2)
w * x ^ 4 = (5 * x ^ 5 + 8 * x ^ 4 + 40 * x ^ 3 + 64 * x ^ 2) | : x ^ 4
w = (5 * x ^ 3 + 8 * x ^ 2 + 40 * x + 64) / x ^ 2
Die Variable w steht hier für eine beliebige Lösung der Gleichung und wurde nur als Hilfe für die Äquivalenzumformung benutzt.
(5 * x ^ 3 + 8 * x ^ 2 + 40 * x + 64) / x ^ 2 ist dein vereinfachter Ausdruck !