Root Finding Solutions
Root Finding Solutions
(Roll no-133100079)
Date: 11-8-2013
The Bisection method requires function to be negative at one of the initial guesses since this ensures at least one of the roots is present inside the interval. In both the given equations the initial guesses provided gives positive value of function. Therefore initial guesses are not appropriate for bisection method. As well as 1st equation has local minima at root so bisection method fails.
Discussion for Newton-Raphson method: 1. It can be observed from graph of Error v/s iterations that Newton-Raphson method converges slowly at the first few iterations but then speed of convergence increases rapidly near root. 2. The choice of initial guess and nature of function is very important in Newton methods since it decides the convergence. 3. The 2nd function has multiple roots in the given interval so that Newton-Raphson may converge to any one root. 4. for the 1st function f(x) as well as f(x) goes to zero at the root so we may get condition of division by zero. but if f(x) =0 condition is incorporated in program before f(x) =0, then f(x) reaches to 0 earlier than f(x). (According to Ralson and Rabinowitz, 1978) 5. Method is linearly convergent for multiple roots.
Discussion for secant method: 1. The method is less convergent than Newton-Raphson method (seen from number of iterations required) 2. This method does not guarantee the convergence. 3. The method does not require evaluation of derivative analytically.