Newton Raphson
Newton Raphson
Newton Raphson
BSIE 2-5
NEWTON-RAPHSON METHOD
1. The equation y3 − 2y − 5 = 0 has a root near y = 2. Starting with y 0 = 2, compute y1, y2, y3, the next
three Newton-Raphson estimates for the root.
GRAPH
2. Find the rooot of the function f(x)= e 2x-x-6, correct to four decimal places, use the Newton
Raphson method.
f(x) = e2x-x-6 f(xi)
xi+1 = xi -
f'(x) = 2e2x-1 f'(xi)
GRAPH
Root is 0.97087
3. Find the root of the function f(x)= 5x+lnx-10000, correct to four decimal places , use the newton
raphson method.
GRAPH
Root is 1998.48
4. A devotee of Newton-Raphson method used the method to solve the equation X 100=0, using
the initial estimate x0=0.1. Calculate the next five Newton Method estimates.
f(xi)
xi+1 = xi -
f'(xi)
f(x)= x100
f'(x)= 100x99
GRAPH
5. Find the non-zero root of the equation x 2-sinx using newton's method, set the initial guess at
0.5.
f(xi)
xi+1 = xi -
f'(xi)
f(x)= x2-sinx
f'(x)= 2x-cos x
GRAPH
6. Find the root of a function f(x)= x 5-x3+2x2-1. The initial guess is at x1=1. Approximate the root to
five decimal places.
f(xi)
xi+1 = xi -
f'(xi)
f(x)= x5-x3+2x2-1
f'(x)= 5x4-3x2+4x
GRAPH
7. Find the root of a function f(x)= arc tan x-x+1. The initial guess is at x 1=2. Approximate the root
to five decimal places.
f(xi)
xi+1 = xi -
f'(xi)
f(x)= arctan x -x +1
f'(x)= - x2
x2+1
i x f(x) f'(x)
1 2 0.107149 -0.011351
2 11.43997 -8.956366 -0.987687
3 2.371953 -0.200138 -0.038513
4 -2.824732 2.594184 -0.87063
5 0.154929 0.998778 -0.499389
6 2.154931 -0.018612 -0.000346
GRAPH