Notes, Lesson 4.8
Newton's Method
To the Notes Menu Course Home Page Sample Problems for this Lesson    Assignment  

We have techniques for finding solutions to linear and quadratic equations. For quadratic equations, we could factor, complete the square, or use the quadratic formula. But what about higher degreed equations? How would we find the x-intercept to the curve below?

 

Newton's Method says that you can:
1) pick a starting estimate ,
2) find the point on the function where your estimate intersects the curve. ,
3) using the derivative of the function, find the equation of the tangent line to the curve at ,
4) call the point where this tangent line intersects the x-axis .
5) Now repeat the process with as the next estimate, and continue until you achieve desired accuracy.

This method does not always work. It is possible that the first estimate will be such that after following the above procedure, one will be led away from the zero of the function, instead of towards it. This can be overcome with a better first estimate. Following is an example of this type of failure:


If you have the Journey Through Calculus CD, load and run Resources/Module 5/Newton's Method/Start of Newton's Method

Example Problem.

Use Newton's method with the specifiied initial approximation, to find , the third approximation to the root of the given equation. (Give your answer to four decimal places.)
Example Problem.

We first differentiate so that we will be able to calculate the slope of the tangent line at the estimate. We also calculate the value of the function at .

Now using the slope of 1, and the point (1,-1), we find the equation of the tangent line to our function at .

Now we find where this tangent line intersects the x-axis, by setting equal to zero and solving. Now we have our second estimate, .
We again go through the same procedure. We find the coordinates for the point on the curve at , we claculate the slope of the tangent line at this point on the curve, and then using the coordinates of the point on the curve, find the equation of the tangent line.
Finally, we find where this tangent line intersects the x-axis, giving us our third estimate, .


Whenever a process is to take its previous answer and repeat calculations based on the previous answer, this is called iteration. A formula which summarizes this iterative procedure is:



Check Concepts
Check Concepts
Check Concepts


#1: True or False: Newton's Method allows us to estimate the value of derivatives.
   
#2: True or False: Newton's Method does not always work.
   
#3: Newton's Method is important with .....
   
#4: You can tell Newton's Method is not working if ...
   
#5 Newton's Method is helpful with weaknesses in ...

To the Top of the PageTo the Course Home Page