Ridders' method

1

In numerical analysis, Ridders' method is a root-finding algorithm based on the false position method and the use of an exponential function to successively approximate a root of a continuous function f(x). The method is due to C. Ridders. Ridders' method is simpler than Muller's method or Brent's method but with similar performance. The formula below converges quadratically when the function is well-behaved, which implies that the number of additional significant digits found at each step approximately doubles; but the function has to be evaluated twice for each step, so the overall order of convergence of the method with respect to function evaluations rather than with respect to number of iterates is \sqrt{2}. If the function is not well-behaved, the root remains bracketed and the length of the bracketing interval at least halves on each iteration, so convergence is guaranteed.

Method

Given two values of the independent variable, x_0 and x_2, which are on two different sides of the root being sought so that, the method begins by evaluating the function at the midpoint. One then finds the unique exponential function e^{ax} such that function satisfies. Specifically, parameter a is determined by The false position method is then applied to the points and, leading to a new value x_3 between x_0 and x_2, which will be used as one of the two bracketing values in the next step of the iteration. The other bracketing value is taken to be x_1 if (which will be true in the well-behaved case), or otherwise whichever of x_0 and x_2 has a function value of opposite sign to f(x_3). The iterative procedure can be terminated when a target accuracy is obtained.

This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.

Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc.
Bliptext is not affiliated with or endorsed by Wikipedia or the Wikimedia Foundation.

View original