Newton polynomial
From Wikipedia, the free encyclopedia
In the mathematical field of numerical analysis, a Newton polynomial, named after its inventor Isaac Newton, is the interpolation polynomial for a given set of data points in the Newton form. The Newton polynomial is sometimes called Newton's divided differences interpolation polynomial because the coefficients of the polynomial are calculated using divided differences.
As there is only one interpolation polynomial for a given set of data points it is a bit misleading to call the polynomial Newton interpolation polynomial. The more precise name is interpolation polynomial in the Newton form.
Contents |
[edit] Definition
Given a set of k + 1 data points
where no two xj are the same, the interpolation polynomial in the Newton form is a linear combination of Newton basis polynomials
with the Newton basis polynomials defined as
and the coefficients defined as
where
is the notation for divided differences.
Thus the Newton polynomial can be written as
[edit] General case
For the special case of xi = i, there is a closely related set of polynomials, also called the Newton polynomials, that are simply the binomial coefficients for general argument. That is, one also has the Newton polynomials pn(z) given by
In this form, the Newton polynomials generate the Newton series. These are in turn a special case of the general difference polynomials which allow the representation of analytic functions through generalized difference equations.
[edit] Main idea
Solving an interpolation problem leads to a problem in linear algebra where we have to solve a matrix. Using a standard monomial basis for our interpolation polynomial we get the very complicated Vandermonde matrix. By choosing another basis, the Newton basis, we get a much simpler lower triangular matrix which can be solved faster.
For k + 1 data points we construct the Newton basis as
Using these polynomials as a basis for Πk we have to solve
to solve the polynomial interpolation problem.
This matrix can be solved recursively by solving
[edit] Application
As can be seen from the definition of the divided differences new data points can be added to the data set to create a new interpolation polynomial without recalculating the old coefficients. And when a data point changes we usually do not have to recalculate all coefficients. Furthermore if the xi are distributed equidistantly the calculation of the divided differences becomes significantly easier. Therefore the Newton form of the interpolation polynomial is usually preferred over the Lagrange form for practical purposes.
[edit] Example
The divided differences can be written in the form of a table. For example, for a function f is to be interpolated on points . Write
the interpolating polynomial is formed as above using the topmost entries in each column as coefficients.
For example, if we are to construct the interpolating polynomial to f(x) = tanx using divided differences, at the points
x0 = − 1.5 | x1 = − 0.75 | x2 = 0 | x3 = 0.75 | x4 = 1.5 |
f(x0) = − 14.1014 | f(x1) = − 0.931596 | f(x2) = 0 | f(x3) = 0.931596 | f(x4) = 14.1014 |
we construct the table
Thus, the interpolating polynomial is
Neglecting minor numerical stability problems in evaluating the entries of the table, this polynomial is essentially the same as that obtained with the same function and data points in the Lagrange polynomial article.
[edit] See also
- Newton series
- Neville's schema
- Polynomial interpolation
- Lagrange form of the interpolation polynomial
- Bernstein form of the interpolation polynomial
- Hermite interpolation