False Position or Regula Falsi Method

Numerical Methods

Source inspiration: (Mathew 2000-2019).

Animations

Each animation below shows the secant diagram for Regula Falsi. At each step, a secant line is drawn through the two bracket endpoints \((a, f(a))\) and \((b, f(b))\); its x-intercept \(c\) becomes the new estimate. Unlike bisection (which uses the midpoint), Regula Falsi weights the new point toward whichever endpoint has a smaller \(|f|\) value, often giving faster convergence — but one endpoint can remain fixed for many iterations.

Julia source scripts that generated these animations are linked under each case.

Case A — Convergent, \(f(x) = x^3 + 4x^2 - 10\), \([a, b] = [-1, 2]\)

Behavior: The method converges to the real root \(x^* \approx 1.3688\). The left endpoint \(a = -1\) stays fixed throughout because \(f(-1) < 0\) and all successive false-position points \(c\) also satisfy \(f(c) < 0\), so the algorithm keeps replacing \(a\) with \(c\) while \(b = 2\) holds. This “one-sided” stagnation is characteristic of Regula Falsi and distinguishes it from the symmetric bracketing of bisection.

Julia source

Regula Falsi animation for f(x)=x³+4x²−10 on [−1,2]: the secant line from bracket endpoints walks toward the root near x=1.37, with the right endpoint fixed and successive false-position points converging from the left.

Case B — Convergent (one-sided), \(f(x) = x - \cos(x)\), \([a, b] = [0, 1]\)

Behavior: The method converges to the “Dottie number” \(x^* \approx 0.7391\), the unique fixed point of cosine. The left endpoint \(a = 0\) remains fixed at \(f(0) = -1\) throughout, while successive false-position points advance from the right. This is a clean illustration of one-sided convergence: the bracket shrinks only on the right side, yet the secant intercept homes in on the root accurately.

Julia source

Regula Falsi animation for f(x)=x−cos(x) on [0,1]: the secant from bracket endpoints converges to the Dottie number x*≈0.739, with the left endpoint fixed at 0 while the right endpoint steps in.

References

Mathew, John H. 2000-2019. Numerical Analysis - Numerical Methods Modules. https://web.archive.org/web/20190808102217/http://mathfaculty.fullerton.edu/mathews/n2003/NumericalUndergradMod.html.