2.1.Polynomial interpolation¶
The United States carries out a census of its population every 10 years. Suppose we want to know the population at times in between the census years, or to estimate future populations. One technique is to find a polynomial that passes through all the data points.[1]
As posed in Definition 2.1.1, the polynomial interpolation problem has a unique solution. Once the interpolating polynomial is found, it can be evaluated anywhere to estimate or predict values.
2.1.1Interpolation as a linear system¶
Given data for , we seek a polynomial
such that for all . These conditions are used to determine the coefficients :
These equations form a linear system for the coefficients :
or more simply, . The matrix is of a special type.
Polynomial interpolation can therefore be posed as a linear system of equations with a Vandermonde matrix.
2.1.2Exercises¶
We’re quite certain that the U.S. Census Bureau uses more sophisticated modeling techniques than the one we present here!