4.1: Newton's Method
( \newcommand{\kernel}{\mathrm{null}\,}\)
In Chapter 3, we learned how the first and second derivatives of a function influence its graph. In this chapter we explore other applications of the derivative.
Solving equations is one of the most important things we do in mathematics, yet we are surprisingly limited in what we can solve analytically. For instance, equations as simple as x5+x+1=0 or cosx=x cannot be solved by algebraic methods in terms of familiar functions. Fortunately, there are methods that can give us approximate solutions to equations like these. These methods can usually give an approximation correct to as many decimal places as we like. In Section 1.5, we learned about the Bisection Method. This section focuses on another technique (which generally works faster), called Newton's Method.
Newton's Method is built around tangent lines. The main idea is that if x is sufficiently close to a root of f(x), then the tangent line to the graph at (x,f(x)) will cross the x-axis at a point closer to the root than x.
Figure 4.1.1: Demonstrating the geometric concept behind Newton's Method
We start Newton's Method with an initial guess about roughly where the root is. Call this x0. (See Figure 4.1.1a.) Draw the tangent line to the graph at (x0,f(x0)) and see where it meets the x-axis. Call this point x1. Then repeat the process -- draw the tangent line to the graph at (x1,f(x1)) and see where it meets the x-axis. (See Figure 4.1.1b.) Call this point x2. Repeat the process again to get x3, x4, etc. This sequence of points will often converge rather quickly to a root of f.
We can use this geometric process to create an algebraic process. Let's look at how we found x1. We started with the tangent line to the graph at (x0,f(x0)). The slope of this tangent line is f′(x0) and the equation of the line is
$$y=f'(x_0)(x-x_0)+f(x_0).\]
This line crosses the x-axis when y=0, and the x--value where it crosses is what we called x1. So let y=0 and replace x with x1, giving the equation:
0=f′(x0)(x1−x0)+f(x0).
Now solve for x1:
x1=x0−f(x0)f′(x0).
Since we repeat the same geometric proces to find x2 from x1, we have
x2=x1−f(x1)f′(x1).
In general, given an approximation xn, we can find the next approximation, xn+1 as follows:
xn+1=xn−f(xn)f′(xn).
We summarize this process as follows.
Key Idea 5: Newton's Method
Let f be a differentiable function on an interval I with a root in I. To approximate the value of the root, accurate to d decimal places:
- Choose a value x0 as an initial approximation of the root. (This is often done by looking at a graph of f.)
- Create successive approximations iteratively; given an approximation xn, compute the next approximation xn+1 as xn+1=xn−f(xn)f′(xn).
- Stop the iterations when successive approximations do not differ in the first d places after the decimal point.
Note: Newton's Method is not infallible. The sequence of approximate values may not converge, or it may converge so slowly that one is "tricked" into thinking a certain approximation is better than it actually is. These issues will be discussed at the end of the section.}
Let's practice Newton's Method with a concrete example.
Example 4.1.1: Using Newton's Method
Approximate the real root of x3−x2−1=0, accurate to the first 3 places after the decimal, using Newton's Method and an initial approximation of x0=1.}
Solution
To begin, we compute f′(x)=3x2−2x. Then we apply the Newton's Method algorithm, outlined in Key Idea 5.
x1=1−f(1)f′(1)=1−13−12−13⋅12−2⋅1=2,x2=2−f(2)f′(2)=2−23−22−13⋅22−2⋅2=1.625,x3=1.625−f(1.625)f′(1.625)=1.625−1.6253−1.6252−13⋅1.6252−2⋅1.625≈1.48579.x4=1.48579−f(1.48579)f′(1.48579)≈1.46596x5=1.46596−f(1.46596)f′(1.46596)≈1.46557
We performed 5 iterations of Newton's Method to find a root accurate to the first 3 places after the decimal; our final approximation is 1.465. The exact value of the root, to six decimal places, is 1.465571; It turns out that our x5 is accurate to more than just 3 decimal places.
A graph of f(x) is given in Figure 4.1.2. We can see from the graph that our initial approximation of x0=1 was not particularly accurate; a closer guess would have been x0=1.5. Our choice was based on ease of initial calculation, and shows that Newton's Method can be robust enough that we do not have to make a very accurate initial approximation.
Figure 4.1.2: A graph of f(x)=x3−x2−1 in Example 4.1.1.
We can automate this process on a calculator that has an Ans key that returns the result of the previous calculation. Start by pressing 1 and then Enter. (We have just entered our initial guess, x0=1.) Now compute
$$\texttt{Ans} - \frac{f(\texttt{Ans})}{f'(\texttt{Ans})}\]
by entering the following and repeatedly press the Enter key:
Ans−(Ans3−Ans2−1)/(3∗Ans2−2∗Ans)
Each time we press the \texttt{Enter} key, we are finding the successive approximations, x1, x2, \dots, and each one is getting closer to the root. In fact, once we get past around x7 or so, the approximations don't appear to be changing. They actually are changing, but the change is far enough to the right of the decimal point that it doesn't show up on the calculator's display. When this happens, we can be pretty confident that we have found an accurate approximation.
Using a calculator in this manner makes the calculations simple; many iterations can be computed very quickly.
Example 4.1.2: Using Newton's Method to find where functions intersect
Use Newton's Method to approximate a solution to cosx=x, accurate to 5 places after the decimal.
Solution
Newton's Method provides a method of solving f(x)=0; it is not (directly) a method for solving equations like f(x)=g(x). However, this is not a problem; we can rewrite the latter equation as f(x)−g(x)=0 and then use Newton's Method.
So we rewrite cosx=x as cosx−x=0. Written this way, we are finding a root of f(x)=cosx−x. We compute f′(x)=−sinx−1. Next we need a starting value, x0. Consider Figure 4.1.3, where f(x)=cosx−x is graphed. It seems that x0=0.75 is pretty close to the root, so we will use that as our x0. (The figure also shows the graphs of y=cosx and y=x, drawn with dashed lines. Note how they intersect at the same x value as when f(x)=0.)
Figure 4.1.3: A graph of f(x)=cosx−x used to find an initial approximation of its root.
We now compute x1, x2, etc. The formula for x1 is
x1=0.75−cos(0.75)−0.75−sin(0.75)−1≈0.7391111388.
Apply Newton's Method again to find x2:
x2=0.7391111388−cos(0.7391111388)−0.7391111388−sin(0.7391111388)−1≈0.7390851334.
We can continue this way, but it is really best to automate this process. On a calculator with an Ans key, we would start by pressing 0.75, then Enter, inputting our initial approximation. We then enter:
Ans - (cos(Ans)-Ans)/(-sin(Ans)-1).
Repeatedly pressing the Enter key gives successive approximations. We quickly find:
x3=0.7390851332x4=0.7390851332.
Our approximations x2 and x3 did not differ for at least the first 5 places after the decimal, so we could have stopped. However, using our calculator in the manner described is easy, so finding x4 was not hard. It is interesting to see how we found an approximation, accurate to as many decimal places as our calculator displays, in just 4 iterations.
If you know how to program, you can translate the following pseudocode into your favorite language to perform the computation in this problem.
x = .75
while true
oldx = x
x = x - (cos(x)-x)/(-sin(x)-1)
print x
if abs(x-oldx) < .0000000001
break
This code calculates x1, x2, etc., storing each result in the variable x. The previous approximation is stored in the variable oldx. We continue looping until the difference between two successive approximations, abs(x-oldx), is less than some small tolerance, in this case, .0000000001.
Convergence of Newton's Method
What should one use for the initial guess, x0? Generally, the closer to the actual root the initial guess is, the better. However, some initial guesses should be avoided. For instance, consider Example 4.1.1 where we sought the root to f(x)=x3−x2−1. Choosing x0=0 would have been a particularly poor choice. Consider Figure 4.1.4, where f(x) is graphed along with its tangent line at x=0. Since f′(0)=0, the tangent line is horizontal and does not intersect the x--axis. Graphically, we see that Newton's Method fails.
\Figure 4.1.4: A graph of f(x)=x3−x2−1, showing why an initial approximation of x0=0 with Newton's Method fails.
We can also see analytically that it fails. Since
x1=0−f(0)f′(0)
and f′(0)=0, we see that x1 is not well defined.
This problem can also occur if, for instance, it turns out that f′(x5)=0. Adjusting the initial approximation x0 by a very small amount will likely fix the problem.
It is also possible for Newton's Method to not converge while each successive approximation is well defined. Consider f(x)=x1/3, as shown in Figure 4.1.5. It is clear that the root is x=0, but let's approximate this with x0=0.1. Figure 4.1.5a shows graphically the calculation of x1; notice how it is farther from the root than x0. Figures 4.1.5b and (4.1.5c) show the calculation of x2 and x3, which are even farther away; our successive approximations are getting worse. (It turns out that in this particular example, each successive approximation is twice as far from the true answer as the previous approximation.)
Figure 4.1.5: Newton's Method fails to find a root of f(x)=x1/3, regardless of the choice of x0.}\label{fig:newt4}
There is no "fix" to this problem; Newton's Method simply will not work and another method must be used.
While Newton's Method does not always work, it does work "most of the time," and it is generally very fast. Once the approximations get close to the root, Newton's Method can as much as double the number of correct decimal places with each successive approximation. A course in Numerical Analysis will introduce the reader to more iterative root finding methods, as well as give greater detail about the strengths and weaknesses of Newton's Method.
Contributors and Attributions
Gregory Hartman (Virginia Military Institute). Contributions were made by Troy Siemers and Dimplekumar Chalishajar of VMI and Brian Heinold of Mount Saint Mary's University. This content is copyrighted by a Creative Commons Attribution - Noncommercial (BY-NC) License. http://www.apexcalculus.com/
Integrated by Justin Marshall.