Algorithm 3.4.2.
Newton’s Method for finding a root \(p\) to tolerance \(\epsilon\) of a function \(f(x)\) with initial point \(x_{0}\) is given by the following algorithm.
-
Find\begin{equation*} \begin{aligned}x_{n+1}= x_{n} - \frac{f(x_{n})}{f'(x_{n})}\end{aligned} \end{equation*}
-
Increment \(n\) by 1 and go to step 2.
