Trisha Shetty (Editor)

Minimum polynomial extrapolation

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In mathematics, minimum polynomial extrapolation is a sequence transformation used for convergence acceleration of vector sequences, due to Sabay and Jackson.

While Aitken's method is the most famous, it often fails for vector sequences. An effective method for vector sequences is the minimum polynomial extrapolation. It is usually phrased in terms of the fixed point iteration:

x k + 1 = f ( x k ) .

Given iterates x 1 , x 2 , . . . , x k in R n , one constructs the n × ( k 1 ) matrix U = ( x 2 x 1 , x 3 x 2 , . . . , x k x k 1 ) whose columns are the k 1 differences. Then, one computes the vector c = U + ( x k + 1 x k ) where U + denotes the Moore–Penrose pseudoinverse of U . The number 1 is then appended to the end of c , and the extrapolated limit is

s = X c i = 1 k c i ,

where X = ( x 2 , x 3 , . . . , x k + 1 ) is the matrix whose columns are the k iterates starting at 2.

The following 4 line MATLAB code segment implements the MPE algorithm:

References

Minimum polynomial extrapolation Wikipedia