Solving Nonlinear Equations with Newton's Method

The methods in this book are variations of Newton's method. The Newton sequence is
The interpretation of (1.2) is that we model F at the current iterate x n with a linear function
and let the root of M n be the next iteration. M n is called the local linear model. If F ? ( x n) is nonsingular, then M n( x n+1) = 0 is equivalent to (1.2).
Figure 1.1 illustrates the local linear model and the Newton iteration for the scalar equation
with initial iterate x 0 = 1. We graph the local linear model
at x j from the point ( x j, y j) = ( x j, F( x j)) to the next iteration ( x j +1, 0). The iteration converges rapidly and one can see the linear model becoming more and more accurate. The third iterate is visually indistinguishable from the solution. The MATLAB program ataneg.m creates Figure 1.1 and the other figures in this chapter for the arctan function.
The computation of a Newton iteration requires
evaluation of F( x n) and a test for termination,
approximate solution of the equation
for the Newton step s, and
construction of x n +1 = x n + ? s, where the step length ?