Find a root of x = e-x using Regular Falsi Method
Regular Falsi method is a numerical method to derive the root of a polynomial. The advantage of Regular Falsi over Bisection method is that the convergence...
Find a root of x = e-x using Bisection Method
Bisection method is the most simplest method of solving algebraic or transcendental equations. It involves selecting an interval [a,b] in which the root lies such...
Newton Raphson Method Example – Find root of e-x = Sin X
Newton Raphson method is the core in computer Numerical analysis software programs to find root of equations such as e<sup>-x</sup> = Sin X. Complete solution is...