The Aberth method, or Aberth–Ehrlich method or Ehrlich–Aberth method, named after Oliver Aberth
and Louis W. Ehrlich,
is a
root-finding algorithm
In mathematics and computing, a root-finding algorithm is an algorithm for finding zeros, also called "roots", of continuous functions. A zero of a function , from the real numbers to real numbers or from the complex numbers to the complex numbe ...
developed in 1967 for simultaneous approximation of all the roots of a
univariate polynomial
In mathematics, a polynomial is an expression consisting of indeterminates (also called variables) and coefficients, that involves only the operations of addition, subtraction, multiplication, and positive-integer powers of variables. An exampl ...
.
This method converges cubically, an improvement over the
Durand–Kerner method
In numerical analysis, the Weierstrass method or Durand–Kerner method, discovered by Karl Weierstrass in 1891 and rediscovered independently by Durand in 1960 and Kerner in 1966, is a root-finding algorithm for solving polynomial equations. In ot ...
, another algorithm for approximating all roots at once, which converges quadratically.
(However, both algorithms converge linearly at
multiple zeros.
)
This method is used in
MPSolve, which is the reference software for approximating all roots of a polynomial to an arbitrary precision.
Description
Let
be a
univariate
In mathematics, a univariate object is an expression, equation, function or polynomial involving only one variable. Objects involving more than one variable are multivariate. In some cases the distinction between the univariate and multivariat ...
polynomial of degree ''
'' with real or complex coefficients. Then there exist complex numbers
, the roots of ''
'', that give the
factorization
In mathematics, factorization (or factorisation, see English spelling differences) or factoring consists of writing a number or another mathematical object as a product of several ''factors'', usually smaller or simpler objects of the same kind ...
:
:
Although those numbers are unknown,
upper and lower bounds
In mathematics, particularly in order theory, an upper bound or majorant of a subset of some preordered set is an element of that is greater than or equal to every element of .
Dually, a lower bound or minorant of is defined to be an ele ...
for their absolute values are computable from the coefficients of the polynomial. Now one can pick ''
'' distinct numbers in the complex plane—randomly or evenly distributed—such that their absolute values are within the same bounds. (Also, if the zeros are symmetrical, the starting points must not be exactly symmetrical along the same axis, as this can prevent convergence.)
A set of such numbers is called an initial approximation of the set of roots of ''
''. This approximation can be iteratively improved using the following procedure.
Let
be the current approximations of the zeros of ''
''. Then offset numbers
are computed as
:
where
is the polynomial derivative of ''
'' evaluated in the point ''
''.
The next set of approximations of roots of
is then
. One can measure the quality of the current approximation by the values of the polynomial or by the size of the offsets.
Conceptually, this method uses an
electrostatic
Electrostatics is a branch of physics that studies electric charges at rest (static electricity).
Since classical times, it has been known that some materials, such as amber, attract lightweight particles after rubbing. The Greek word for am ...
analogy, modeling the approximated zeros as movable negative
point charges, which converge toward the true zeros, represented by fixed positive point charges.
A direct application of Newton's method to each approximated zero will often cause multiple starting points to incorrectly converge to the same root. The Aberth method avoids this by also modeling the repulsive effect the movable charges have on each other. In this way, when a movable charge has converged on a zero, their charges will cancel out, so that other movable charges are no longer attracted to that location, encouraging them to converge to other "unoccupied" zeros. (
Stieltjes also modeled the positions of zeros of polynomials as solutions to electrostatic problems.)
Inside the formula of the Aberth method one can find elements of
Newton's method
In numerical analysis, Newton's method, also known as the Newton–Raphson method, named after Isaac Newton and Joseph Raphson, is a root-finding algorithm which produces successively better approximations to the roots (or zeroes) of a real ...
and the
Durand–Kerner method
In numerical analysis, the Weierstrass method or Durand–Kerner method, discovered by Karl Weierstrass in 1891 and rediscovered independently by Durand in 1960 and Kerner in 1966, is a root-finding algorithm for solving polynomial equations. In ot ...
. Details for an efficient implementation, esp. on the choice of good initial approximations, can be found in Bini (1996).
The updates of the roots may be executed as a simultaneous
Jacobi-like iteration where first all new approximations are computed from the old approximations or as a sequential
Gauss–Seidel-like iteration that uses each new approximation from the time it is computed.
A very similar method is the Newton-Maehly method. It computes the zeros one after another, but instead of an explicit deflation it divides by the already acquired linear factors on the fly. The Aberth method is like the Newton-Maehly method for computing the last root while pretending you have already found the other ones.
Derivation from Newton's method
The iteration formula is the univariate Newton iteration for the function
:
If the values
are already close to the roots of
, then the rational function
is almost linear with a dominant root close to
and poles at
that direct the Newton iteration away from the roots of ''p(x)'' that are close to them. That is, the corresponding basins of attraction get rather small, while the root close to
has a wide region of attraction.
The Newton step
in the univariate case is the reciprocal value to the logarithmic derivative
:
Thus, the new approximation is computed as
:
which is the update formula of the Aberth–Ehrlich method.
Literature
See also
*
MPSolve A package for numerical computation of polynomial roots. Free usage for scientific purpose.
{{DEFAULTSORT:Aberth Method
Root-finding algorithms