NEWTON'S METHOD
Method
- Given a function f(x), approximate a root r.
- Find the tangent line at (r, f(r)).
- Find the x-intercept (x,0) for this
tangent
line.
- Using x as a new approximation, repeat steps 2
through 4
until desired accuracy is reached.
ALGORITHM:
Proof
- The equation of the tangent line containing (x1,
f(x1))
is y - f(x1) = f '(x1)(x - x1)
- The x-intercept is (x2,0)
so
setting x
= x2 and y = 0 produces
- -f(x1) = f '(x1)(x2 - x1)
- -f(x1) = x2
-
x1
f '(x1)
- x2 = x1 - f(x1)
f '(x1)
Newton's Method May Fail when
- a critical point lies between x1 and
the true
root
- endpoints are used
Sufficient Condition for Newton's Method to Work
| f(x) f ''(x) | <
1
| f '(x)]2 |
Problems