Summary of Newton’s Method

Key Concepts

  • Newton’s method approximates roots of f(x)=0f(x)=0 by starting with an initial approximation x0x0, then uses tangent lines to the graph of ff to create a sequence of approximations x1,x2,x3,x1,x2,x3,.
  • Typically, Newton’s method is an efficient method for finding a particular root. In certain cases, Newton’s method fails to work because the list of numbers x0,x1,x2,x0,x1,x2, does not approach a finite value or it approaches a value other than the root sought.
  • Any process in which a list of numbers x0,x1,x2,x0,x1,x2, is generated by defining an initial number x0x0 and defining the subsequent numbers by the equation xn=F(xn1)xn=F(xn1) for some function FF is an iterative process. Newton’s method is an example of an iterative process, where the function F(x)=x[f(x)f(x)] for a given function f.

Glossary

iterative process
process in which a list of numbers x0,x1,x2,x3, is generated by starting with a number x0 and defining xn=F(xn1) for n1
Newton’s method
method for approximating roots of f(x)=0; using an initial guess x0, each subsequent approximation is defined by the equation xn=xn1f(xn1)f(xn1)