Solving f(x) equation using Newton Raphson's method First you shall assume initial x₁ and solve f(x₁). Then check f(x₁) whether is 0(zero) or not. If not 0(zero), you assume x₂. x₂ is solved as following equation \[x_2=x_1-\frac{f(x_1)}{f'(x_1)}\]
\[f'(x)=\frac{f(x+dx)-f(x)}{dx}\]
\[f'(x_1)=\frac{f(x_1+dx)-f(x_1)}{dx}\]
Check f(x₂) wheter is 0 or not. If not 0(zero), you assume x₃ using above method If you continue to solve it this way, the answer will be calculated.