NEWTON'S METHOD

Method

  1. Given a function f(x), approximate a root r.
  2. Find the tangent line at (r, f(r)).
  3. Find the x-intercept (x,0) for this tangent line.
  4. Using x as a new approximation, repeat steps 2 through 4 until desired accuracy is reached.
     ALGORITHM:   

Proof

Newton's Method May Fail when

  1. a critical point lies between x1 and the true root
  2. endpoints are used

Sufficient Condition for Newton's Method to Work

| f(x) f ''(x) |    <    1
 | f '(x)]2 |


Problems