Newton's Method
Newton's Method
UNIVERSITY OF LUZON
NUMERICAL METHODS
NEWTON’S METHODS
INTRODUCTION
NEWTON’S METHODS
if xn is an approximation a solution of f(x)=0 and if f 0 (xn ) 6= 0 the
next approximation is given by,
General Formula
f (x0 )
x1 = x0 −
f 0 (x0 )
in terms of sequence x0 , x1 , ..., then,
f (xn )
xn+1 = xn −
f 0 (xn )
NEWTON’S METHODS
CONVERGENCE
If the iterations are getting closer and closer to the correct answer
the method is said to converge. However, Newton’s method will
not converge if:
Conditions:
• if f 0 (xn = 0) for some n
•if limn→∞ does not exist
NEWTON’S METHODS
Failure of newton’s method due to bad starting points
NEWTON’S METHODS
Finding points of Intersection
NEWTON’S METHODS
Examples
NEWTON’S METHODS