Solve the equation $x^4 - 14x^3 + 50x^2 -14x + 1 = 0$.
I am not sure about how to best proceed, and would like a solution that does not involved the generalised quartic formula.

- 301
-
3Related : http://math.stackexchange.com/questions/403025/equation-with-high-exponents – lab bhattacharjee Nov 26 '14 at 10:52
-
The symmetry of the coefficients is the key ... as lab bhattacharjee already showed. – Claude Leibovici Nov 26 '14 at 10:56
3 Answers
Hint: First observe the equation is palindromic. Divide throughout with $x^2$ and rewite it as a quadratic in $\left(x+\dfrac{1}{x}\right)$.

- 3,700
-
1What is the exact form of the polynomial after you rewrite it in your suggested way? I get $x^2 - 14x + 50 - \frac{14}{x} + \frac{1}{x^2}$, but not sure how to proceed – YDP Nov 26 '14 at 10:59
-
4
-
-
@Kinhu: The first one looks like you may have lost a factor of 2 before the sqrt(2)... I've just done it in my head so I may be wrong but might be worth double checking... – Chris Nov 26 '14 at 22:37
-
Not knowing the substitution trick, you can anyway infer that if $x$ is a solution, then $1/x$ as well, so that the polynomial can be factored in two polynomials of the second degree, and these will be palindromic too:
$$x^4 - 14x^3 + 50x^2 -14x + 1 =(x^2+Ax+1)(x^2+Bx+1).$$ Developing and identifying, $$A+B=-14,\\1+AB+1=50.$$ The solutions are $$\frac{-14\pm\sqrt{14^2-4\cdot48}}2=-8,-6.$$
Now solve $$x^2-8x+1=0,\\x^2-6x+1=0.$$
-
I notice that with some palindromic quartic polynomials, such as $x^4+2x^3+4x^2+2x+1$, the above technique still works, but $A$ and $B$ become non-real. In fact $x^4+2x^3+4x^2+2x+1 = (x^2+(1+i)x+1)(x^2+(1-i)x+1)$. Of course this can still be used to find the roots, none of which are real. When all roots are known (they are "ugly" in my example), we might pair them up in a different way to get the decomposition into real quadratic polynomials (which will be non-palindromic) whose existence is known from the real-number version of the fundamental theorem of algebra. – Jeppe Stig Nielsen Nov 28 '14 at 16:18
-
@JeppeStigNielsen: yep, you can factor in two real polynomials, but how do you achieve that ? You need to somehow exploit palindromy (actually meaning that there are just two independent coefficients) otherwise you fall back on the general quartic problem. – Nov 28 '14 at 17:12
A more detailed solution:
If we divide the equation by $x^2$:
$$\frac{x^4}{x^2} - \frac{14x^3}{x^2} + \frac{50x^2}{x^2} - \frac{14x}{x^2} + \frac{1}{x^2} = x^2 - 14x + 50 - \frac{14}{x} + \frac{1}{x^2}$$
Then, combining like terms, we notice that:
$$x^2 + \frac{1}{x^2} - 14\left(x+\frac{1}{x}\right) + 50$$
If we let $y = x+\frac{1}{x}$
Note that:
$$\left(x+\frac{1}{x}\right)^2 = x^2 + \frac{1}{x^2} - 2$$
Therefore,
$$x^2 + \frac{1}{x^2} - 14\left(x+\frac{1}{x}\right) + 50 = y^2 -2 -14y + 50 =0$$
$$y^2 - 14y +48 =0$$
$$(y-6)(y-8) = 0$$
Therefore, $x + \frac{1}{x} = 6$ and $x + \frac{1}{x} = 8$
Can you take it from here?

- 6,074