- Steffensen's method
In
numerical analysis , Steffensen's method is aroot-finding method . It is similar toNewton's method and it also achieves quadratic convergence, but it does not usederivative s. The method is named afterJohan Frederik Steffensen .imple description
The simplest form of the formula for Steffensen's method occurs when it is used to find the zeros, or roots, of a function , that is, to find the input value that satisifies . Near the solution , the function is supposed to approximately satisfy , which makes it adequate as an correction function for finding its own solution, although it is not required to be efficient. For some functions, Steffensen's method can work even if this condition is not met, but in such a case, the starting value must be "very" close to the actual solution , and convergence to the solution may be slow.
Given an adequate starting value , a sequence of values can be generated. When it works, each value in the sequence is much closer to the solution than the prior value. The value from the current step generates the value for the next step, via this formula [Germund Dahlquist, Åke Björck, tr. Ned Anderson (1974) "Numerical Methods", pp. 230-231, Prentice Hall, Englewood Cliffs, NJ] :
:
for "n" = 0, 1, 2, 3, ... , where the slope function is a composite of the original function given by the following formula:
:
The function is the average slope of the function ƒ between the last sequence point and the auxiliary point , with the step . It is only for the purpose of finding this auxiliary point that the value of the function must be an adequate correction to get closer to its own solution. For all other parts of the calculation, Steffensen's method only requires the function to be continuous, and to actually have a nearby solution. Several modest modifications of the step in the slope calculation exist to accommodate functions that do not quite meet this requirement.
The main advantage of Steffensen's method is that it can find the roots of an equation just as "quickly" as
Newton's method but the formula does not require a separate function for the derivative, so it can be programmed for any generic function. In this case "quickly" means that the number of correct digits in the answer doubles with each step. The cost for the quick convergence is the double function evaluation: both and must be calculated, which might be time-consuming if is a complicated function. For comparison, thesecant method needs only one function evaluation per step, so allowing for two function evaluations the secant method can do two steps and two steps of the secant method increase the number of correct digits by a factor 2.6 while one step of Steffensen's (or Newton's) method increases it by a factor 2.Similar to
Newton's method and most other quadratically convergent methods, the crucial weakness with the method is the choice of the starting value . If the value of is not "close enough" to the actual solution, the method will fail and the sequence of values will either flip flop between two extremes, or diverge to infinity (possibly both!).Generalisation
Steffensen's method can also be used to find an input of the function that produces the same output: . Such solutions are called "
fixed point s". Many of such functions can be used to find their own solutions by repeatedly recycling the result back as input, but the rate of convergence can be slow, or the function can fail to converge at all, depending on the individual function. Steffensen's method accelerates convergence.This method for finding fixed points of a real-valued function has been generalised for functions on a
Banach space . The generalised method assumes that a family of boundedlinear operators associated with and are can be found to satisfy the condition [L. W. Johnson; D. R. Scholz (1968) On Steffensen's Method, "SIAM Journal on Numerical Analysis" (June 1968), vol. 5, no. 2., pp. 296-302. Stable URL: [http://links.jstor.org/sici?sici=0036-1429%28196806%295%3A2%3C296%3AOSM%3E2.0.CO%3B2-H] ]: .
In the original form (given in the section above), where the function simply takes in and produces real numbers, the operators are "divided differences". In the general form, the operators are the analogue of divided differences in the
Banach space .Steffensen's method is then very similar to the Newton's method, except that it uses the divided difference instead of the derivative . It is thus defined by
: ,
for , and where is the identity operator. If the operator satisfies
:
for some constant , then the method converges quadratically to a fixed point of ƒ if the initial approximation is sufficiently close to the desired solution , that satisfies .
References
Wikimedia Foundation. 2010.