The document describes the Newton-Raphson method to find an approximate root of an equation. It explains that given an approximate root x0, the method iteratively calculates better approximations x1, x2, etc. until converging on the exact root. Each new approximation xn+1 is calculated as xn - f(xn)/f'(xn), where f(x) is the original equation, and f'(x) is its derivative. An example applies the method to find the real root of x4 - x - 10 = 0, obtaining the value 1.855 after 4 iterations.
2. Let f(x)=0 be the given equation and x0 be an approximate root of the
equation.
If x1 = x0 + h be the exact root then f(x1)=0.
i.e., f(x0 + h)=0
f(x0) + hf x0 +
2
2!
f霞 x0 + = 0 [By Taylor
Series]
Since h is small, neglecting 2
and higher powers of h,
f x0 + hf
x0 = 0
h =
f(x0)
f(x0)
x1 = x0 + h = x0
f(x0)
f(x0)
Similarly, starting with x1, a still better approximation x2 is obtained.
x2 = x1
f(x1)
f(x1)
In general, x = x
f(xn)
3. STEP 1 : Find f 0 , f 1
STEP 2 : Check if f 0 . f 1 < 0
STEP 3 : If STEP 2 is true then x0 = 1, and x1 = x0
f(x0)
f(x0)
Continue the iteration xn+1 = xn
f(xn)
f(xn)
till you find the root of the
equation.
4. EXAMPLE : Find the real root of 4
10 = 0, Correct up to 3 decimal places.
SOLUTION :
f 0 = 10
f 1 = 10 (x0)
f 2 = 4 (x1)
f(x) = x4 x 10
f
x = 4x3
1
Now,
x2 = x1
f(x1)
f(x1)
x2 = 2
4
31
= 1.871
x3 = x2
f(x2)
f(x2)
x3 = 1.871
0.3835
25.1988
= 1.8558
Similarly,
x4 = x3
f x3
f x3
= 1.8556
x = 1.855