Next: Convergence of Newton-Raphson method:
Up: ratish-1
Previous: Convergence of secant method:
Unlike the earlier methods, this method requires only one
appropriate starting point, as an initial assumption of
the root of the function . At
a tangent
to is drawn. Equation of this tangent is given by
The point of intersection, say , of this tangent with
x-asis (y = 0) is taken to be the next approximation to the root
of f(x) = 0. So on substituting y = 0 in the tangent equation we
get
If
(say) we have got an acceptable approximate root
of , otherwise we replace by , and draw a
tangent to at
and consider its
intersection, say , with x-axis as an improved
approximation to the root of f(x)=0. If
, we
iterate the above process till the convergence criteria is
satisfied. This geometrical description of the method may be
clearly visualized in the figure below:
The various steps involved in calculating the root of by
Newton Raphson Method are described compactly in the algorithm
below.
Algorithm:
Given a continuously differentiable function
and an initial approximation to the root of the sets involved in calculating an approximation to the
root of s.t.
are:
(1) Calculate
and set
(2) For n = 0,1,2... until convergence criteria is satisfied
do:
Calculate
Remark (1)=1in=1 This method
converges faster than the earlier methods. In fact the method
converges at a quadratic rate. We will prove this later.
Remark (2)=1in =1 This method
can be derived directly by the Taylor expansion f(x) in the
neighborhood of the root of . The starting
approximation to is to be properly chosen so that
the first order Taylor series approximation of
in the
neighbour of leads to , an improved approximation
to . i.e
, neglecting and its higher
powers, we get
i.e.
Now the successive approximations
etc may be the iterative formula:
Remark(3) =1in =1 One may also
derive the above iteration formulation starting with the iteration
formula for the secant method. In a way this may help one to
visualize Newton-Raphson method as an improvement over the secant
method. So, let us consider the iteration formula for the secant
method i.e.
Add and subtract
to the numeration on the r.h.s. to
get
Clearly,
is
the slope of the secant to the curve through the points
,
. This also represents
slope of the tangent to f(x)=0 parallel to the secant intersecting
x-axis between and . If is differentiable
one may as well approximate two slope by and thus
arrive at the iteration formula.
=0in =1
Example:
Solve
for the root in [1,2]
by Newton Raphson method.
Solution:
Given
Take and
repeat the process.
Results are tabulated below:
|
Newton Raphson Method |
|
|
|
|
|
|
Iteration no. |
|
|
|
0 |
2.0000000000 |
1.7209302187 |
0.8910911679 |
1 |
1.7209302187 |
1.6625729799 |
0.0347661413 |
2 |
1.6625729799 |
1.6601046324 |
0.0000604780 |
3 |
1.6601046324 |
1.6601003408 |
0.0000002435 |
Example:
Solve
in
[0.5,1.5]
for the root by Newton-Raphson method.
Solution: Given
Say,
The results are tabulated below:
|
Newton Raphson Method |
|
|
|
|
|
|
Iteration no. |
|
|
|
0 |
0.5000000000 |
0.6934901476 |
-0.1086351126 |
1 |
0.6934901476 |
0.7013291121 |
-0.0005313741 |
2 |
0.7013291121 |
0.7013678551 |
-0.0000003363 |
Next: Convergence of Newton-Raphson method:
Up: ratish-1
Previous: Convergence of secant method:
root
2006-02-07