Newton- Raphson method Let x₀ be an approximation value of a root of the equation f(x) = 0. Let x₁ be the exact root closer to x₀. So that x₁ = x₀ + h. Where h is small. Since x₁ is the exact root of f(x) = 0, we have f(x₁) =0, i.e f( x₀ + h) =0 i.e f( x₀)+h/1![f'( x₀)]+h²/2![f"( x₀)]+....=0 by Taylor's theorem. Since h is small, h² and higher powers of h may be omitted. Hence f( x₀)+h[f'( x₀)] = 0 => h = -f( x₀)/f'( x₀) .....(1) ∴ x₁ = x₀ + h = x₀ -f( x₀)/f'( x₀) [using(1)] Taking x₁ as an approximation value of the root, a still better approximation x₂ can be obtained by x₂ = x₁ -f( x₁)/f'( x₁) The iterative process is continued until we get the required accuracy. The iterative formula is xₙ₊₁ = xₙ - f(xₙ)/f'(xₙ) (for n= 0,1,2,.....) is called the Newton- Raphson method or Newton's iteration formula. Remarks 1) When the derivative of f(x) can be easily found and is a simple expression, then the real root of the equation f(x)=0 can be compu...