I was asked to solve: $$x^4+2x^3-22x^2+2x+1 = 0$$ Without using differential calculus (Newton's Method). My Progress: Dividing by $x^2$, I get: $$x^2+2x-22+\frac{2}{x}+\frac{1}{x^2} = 0$$ $$x^2 +\frac{1}{x^2} +2x +\frac{2}{x} -22 = 0$$ $$(x+\frac{1}{x})^2 +2(x+\frac{1}{x}) - 24 = 0$$ let $k = (x+\frac{1}{x})$ $$k^2+2k-24 = 0$$ $$(k+6)(k-4) = 0$$ $k = -6$ or $k = 4$
Putting $4 = x + \frac{1}{x} $ leads to $x^2 − 4x + 1 = 0$ as above, and putting $−6 = x + \frac{1}{x}$ leads to $x^2 + 6x + 1 = 0.$
Never mind the answer that I get after that. The big question that I have is that I divided by $x^2$ at the top. My maths teachers always told me that one should never divide by a variable but I did it and got 4 different roots for this question. Why am I not allowed to divide by a variable and when is it possible that I can divide by a variable? It made me solve this equation.