To calculate the real roots of an equation using Regula Falsi (Bracketing) Method

Program to calculte the real roots of an equation using Regula Falsi (Bracketing) Method
The only difference that lies between the bisection method and the regula falsi method is the way the next new point x0 is found.
The bisection method is linearly convergent as error decreases linearly with step each by a factor of 0.5. However, since the convergence is slow to achieve a higher degree of accuracy, a large number of iterations might be needed.
The false point is based on linear interpolation model in which during each iteration one of the starting points is fixed while the other tends to move toward the solution of the equation.



To calculte the real roots of an equation using Regula Falsi (Bracketing) Method in C++ Programming Language for Numerical Methods for Engineering Students
 

About The Author

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top