solve $x^4+6x^3-14x^2+160=0$
I used Newton-Raphson and it didn't work for me:
Newton -Raphson : $$x_1=x_0-\frac{f\left(x_0\right)}{f'\left(x_0\right)}$$ $$f(x)=x^4+6x^3-14x^2+160$$ $$f'(x)=4x^3+18x^2-28x$$
with initial guess $x_0 = 1$, I got:
\begin{align}&x_1 = 26.5\\ &x_2 \approx 19.60676\\ &x_3 \approx 14.4647900462\\ &x_4 \approx 10.639431558896779194\\ & \dots \\ &\dots \\ &\dots \\ & x_{10} \approx 39.01424\\ \end{align}
The answers for $f(x)=0$ are $\boxed{x\approx -2.64478\dots ,x\approx -7.48852\dots}$
Can someone help me solve it using this method or any method?


In applying the Newton-Raphson method it is essential to identify a suitable initial value. This is as much an art as a science, but there is one foolproof way to get the method to converge:
Since the sign of $f'(x)$ enters into this theorem, we should seek the critical points of the polynomial function. Fortunately the derivative function given in the question factors into $x$ times a quadratic, from which we find that the critical points are at $0, (-9\pm\sqrt{193})/4$. The function value is found to be positive at $x=0$ and at $x=(-9+\sqrt{193})/4$ but negative at $x=(-9-\sqrt{193})/4$, so we should expect two negative roots that straddle the $x=(-9-\sqrt{193})/4$ critical point. Call the absolutely larger one $A$ and the other one $B$.
For the $A$ root, note that both $f$ and $(x-A)f'$ will be positive when $x<A$, so we may render $x*\to-\infty$ and select any initial value less than $x=(-9-\sqrt{193})/4$ for which the function is positive. Trial with integer values for $x$ reveals $-8$ is suitable, and it gives ready convergence to the $-7.49$ root.
Getting the B root is trickier. One method to do this to "wall off" the known $A$ root by introducing an asymptote in between, say by dividing the polynomial by $x+7$. Using the quotient rule for differentiation we easily verify that
$g(x) := f(x)/(x+7), g'(x)=[f'(x)/(x+7)]-[f(x)/(x+7)^2]$
from which our Newton iteration may be rendered directly in terms of the original polynomial function $f$:
$x_{n+1}=x_n-\dfrac{g(x_n)}{g'(x_n)}=x_n-\dfrac{f(x_n)}{f'(x_n)-\dfrac{f(x)}{x+7}}$ (*)
Then when $x$ lies between $-7$ and $B$, the above scheme will give convergence to $B$ because both $g(x)$ and $(x-B)g'(x)$ will be negative. The appropriate initial value is then one that satisfies $-7<x<0$ and $f(x)<0$, the latter implying $g(x)<0$. Thus for instance $-5$ as an initial value, with the iteration formula (*) given above, gives convergence to the $-2.64$ root.