Aberth method

The Aberth method, or Aberth–Ehrlich method or Ehrlich–Aberth method, named after Oliver Aberth[1] and Louis W. Ehrlich,[2] is a root-finding algorithm developed in 1967 for simultaneous approximation of all the roots of a univariate polynomial.

This method converges cubically, an improvement over the Durand–Kerner method, another algorithm for approximating all roots at once, which converges quadratically.

[1][2] (However, both algorithms converge linearly at multiple zeros.

[3]) This method is used in MPSolve, which is the reference software for approximating all roots of a polynomial to an arbitrary precision.

be a univariate polynomial of degree

with real or complex coefficients.

Then there exist complex numbers

, that give the factorization: Although those numbers are unknown, upper and lower bounds for their absolute values are computable from the coefficients of the polynomial.

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.

This approximation can be iteratively improved using the following procedure.

be the current approximations of the zeros of

The next set of approximations of roots of

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 analogy, modeling the approximated zeros as movable negative point charges, which converge toward the true zeros, represented by fixed positive point charges.

[1] 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.)

Details for an efficient implementation, esp.

on the choice of good initial approximations, can be found in Bini (1996).

[3] 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.

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.

[4] The iteration formula is the univariate Newton iteration for the function If the values

is almost linear with a dominant root close to

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.

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.