Falsi
Falsi, in mathematical root finding, most commonly refers to the Regula falsi or false position method. It is a bracketing algorithm for locating a real root of a continuous function f on an interval [a, b] where f(a) and f(b) have opposite signs. The method uses the x-intercept of the secant line through (a, f(a)) and (b, f(b)) as an approximate root. This intercept is c = (a f(b) - b f(a)) / (f(b) - f(a)). If f(c) = 0 we are done; otherwise the interval is updated: if f(a) and f(c) have opposite signs, set b = c; else set a = c. The procedure is repeated until a stopping criterion is met, such as |b - a| < tolerance or |f(c)| < tolerance.
Properties: The Regula falsi maintains a and b with f(a)f(b) < 0, guaranteeing a root in the interval
Variants: The Illinois algorithm modifies the function value at a stagnating endpoint to reduce its weight,
Historical context: The name Regula falsi is Latin for the false position method. The technique traces to