Can someone please show how to derive the Newton root finding formula from a term taylor series. My main issue is I am not sure what mathematically the Newton Root finding formula actually is as I have only learned about it through my numerical methods class through MATLAB
Two Term Taylor Series: $f(x_i) + f '(x-x_i) + f ''(x_i)(1/2)(x-x_i)^2$
Thanks for the help!
We have that the 2 term Taylor polynomial is given by
$$f(x)\approx f(x_0)+f'(x_0)(x-x_0)$$
Setting $f(x)=0$, we end up with
$$ \begin{align} 0&=f(x_0)+f'(x_0)(x-x_0)\\ f'(x_0)(x-x_0)&=-f(x_0)\\ x-x_0&=-\frac{f(x_0)}{f'(x_0)}\\ x&=x_0-\frac{f(x_0)}{f'(x_0)} \end{align} $$