Section Summary: 4.9

  1. Definitions

    Newton's method (or Newton-Raphson method): a method for finding the roots, or zeros, of a function (i.e., those values of x such that f(x)=0). The method is based on the linearization of a function: we find the tangent line to a function at a point tex2html_wrap_inline134 , and find where it has a root: we hope that this root is closer than tex2html_wrap_inline136 to the true root, r.

    Often these roots are simply approximations of the true roots, but may be good enough for our work. The method is based on the iterative formula

    displaymath126

    and a good initial guess (denoted tex2html_wrap_inline136 , pronounced ``x-not''). From tex2html_wrap_inline136 we calculate tex2html_wrap_inline144 ; from tex2html_wrap_inline144 we compute tex2html_wrap_inline148 ; etc. If the sequence converges to some finite number, i.e.

    displaymath127

    then we have a root r of the function (as a check, compute f(r)).

    To find a root to a given degree of accuracy (say five decimal places), we compute using the iterative formula until the successive iterates tex2html_wrap_inline154 and tex2html_wrap_inline156 agree to five decimal places.

  2. Theorems

    Make a list of all theorems (lemmas, corollaries) in the section (a few words each is fine). Summarize each one introduced in this section in your own words.

    None.

  3. Properties/Tricks/Hints/Etc.

    Newton's method may fail for various reasons:

    Suppose that we seek the roots of f(x). The book suggests that the graph of f(x) and Newton's method may be used in tandom: the graph will provide a good starting guess tex2html_wrap_inline136 , and Newton's method will provide a good approximation.

  4. Summary

    Summarize the section in two or three sentences.

    We are introduced to Newton's method for computing roots of a function, based on the linearization of the function. Once again, we replace a function by a closely related linear function, hoping that the linear function will inform us about the function itself. Linear functions are the simplest interesting functions we have, and they pop up constantly in mathematics (e.g. the slant asymptotes described in section 4.5 are good replacements for the original functions far from the origin).

    Newton's method is an iterative method, meaning that we do the same thing over and over, and hope that results get successively better. This is quite likely the basic method on which your calculator's ``solve'' command is based.

    It is possible to find different roots from different starting points, in the event that there are multiple roots (e.g. a quadratic equation may have two, etc.). This method often gives a good approximation, but there are a variety of reasons for why Newton's method may fail.

Problems:

Problems, pp. 297-298, #1, 4, 6, 13, 14, 27-30





LONG ANDREW E
Thu Mar 8 13:56:40 EST 2001