Neville's algorithm


In mathematics, Neville's algorithm is an algorithm used for polynomial interpolation that was derived by the mathematician Eric Harold Neville. Given n + 1 points, there is a unique polynomial of degree ≤ n which goes through the given points. Neville's algorithm evaluates this polynomial.
Neville's algorithm is based on the Newton form of the interpolating polynomial and the recursion relation for the divided differences. It is similar to Aitken's algorithm, which is nowadays not used.

The algorithm

Given a set of n+1 data points where no two xi are the same, the interpolating polynomial is the polynomial p of degree at most n with the property
This polynomial exists and it is unique. Neville's algorithm evaluates the polynomial at some point x.
Let pi,j denote the polynomial of degree ji which goes through the points for k = i, i + 1, …, j. The
pi,j satisfy the recurrence relation
This recurrence can calculate
p0,n,
which is the value being sought. This is Neville's algorithm.
For instance, for n = 4, one can use the recurrence to fill the triangular tableau below from the left to the right.
This process yields
p0,4,
the value of the polynomial going through the n + 1 data points at the point x.
This algorithm needs O floating point operations.
The derivative of the polynomial can be obtained in the same manner, i.e:

Application to numerical differentiation

Lyness and Moler showed in 1966 that using undetermined coefficients for the polynomials in Neville's algorithm, one can compute the Maclaurin expansion of the final interpolating polynomial, which yields numerical approximations for the derivatives of the function at the origin. While "this process requires more arithmetic operations than is required in finite difference methods", "the choice of points for function evaluation is not restricted in any way". They also show that their method can be applied directly to the solution of linear systems of the Vandermonde type.