The method starts with a function $f$ defined over the real numbers $x$, an initial guess $x_0$ for a root of $f$, and the derivative $f'$ of $f$. The method then proceeds by repeating the following iteration:
$x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}$
Show more…