Regula Falsi Root Finding Calculator
The False Position Method (Regula Falsi) combines the reliability of the bisection method with the faster convergence of the secant method. It uses linear interpolation between two points that bracket the root.
Advantages: Always converges (like bisection), faster than bisection method, doesn't require derivative.
Requirements: Two points a and b where f(a) × f(b) < 0 (function changes sign).
Method | Convergence | Reliability | Requirements |
---|---|---|---|
Bisection | Linear (slow) | Always converges | f(a) × f(b) < 0 |
Secant | Superlinear (fast) | May diverge | Two initial guesses |
False Position | Superlinear (fast) | Always converges | f(a) × f(b) < 0 |
Iteration | a | b | c | f(a) | f(b) | f(c) | |ck - ck-1| | Updated Interval |
---|