Skip to main content
Mathematics LibreTexts

3.2: Polynomial Interpolation

  • Page ID
    122729
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    Given a set of data, polynomial interpolation is a method of finding a polynomial function that fits a set of data points exactly. Though there are several methods for finding this polynomial, the polynomial itself is unique, which we will prove later.

    3.2.1: Lagrange Polynomial

    One of the most common ways to perform polynomial interpolation is by using the Lagrange polynomial. To motivate this method, we begin by constructing a polynomial that goes through 2 data points \((x_0,y_0)\) and \(x_1,y_1\). We use two equations from college algebra.

    \[y-y_1=m(x-x_1)\hspace{10pt}\textrm{and}\hspace{10pt}m=\frac{y_1-y_0}{x_1-x_0}\]

    Combining these, we end up with:

    \[y=\frac{y_1-y_0}{x_1-x_0}(x-x_1)+y_1.\]

    Now, to derive a formula similar to that used for the Lagrange polynomial, we perform some algebra. We begin by swapping the terms \(y_1-y_0\) and \(x-x_1\):

    \[y=\frac{x-x_1}{x_1-x_0}(y_1-y_0)+y_1.\]

    Distributing the fraction:

    \[y=\frac{x-x_1}{x_1-x_0}y_1 - \frac{x-x_1}{x_1-x_0}y_0 + y_1.\]

    Multiplying the right-most \(y_1\) term by \(\frac{x_1-x_0}{x_1-x_0}=1\):

    \[y=\frac{x-x_1}{x_1-x_0}y_1 - \frac{x-x_1}{x_1-x_0}y_0 + \frac{x_1-x_0}{x_1-x_0}y_1.\]

    Combining to the \(y_1\) terms:

    \[y=-\frac{x-x_1}{x_1-x_0}y_0 + \frac{x-x_0}{x_1-x_0}y_1.\]

    and finally flipping the denominator of the first term to get rid of the negative:

    \[y=\frac{x-x_1}{x_0-x_1}y_0 + \frac{x-x_0}{x_1-x_0}y_1.\]

    In the above, we can observe that, when \(x=x_1\), it follows that the first term cancels out with a zero on top and the second term ends up as \(1\cdot y_1=y_1\), as desired. Similarly, if \(x=x_0\), then the first term ends up as \(1\cdot y_0=y_0\) and the second term cancels out with a zero on top, causing the entire expression to be \(y_0\), as desired.

    For three data points \((x_0,y_0), (x_1,y_1), \textrm{and} (x_2,y_2),\) we can derive a polynomial that behaves similarly:

    \[y=\frac{(x-x_1)(x-x_2)}{(x_0-x_1)(x_0-x_2)}y_0 + \frac{(x-x_0)(x-x_2)}{(x_1-x_0)(x_1-x_2)}y_1 + \frac{(x-x_0)(x-x_1)}{(x_2-x_0)(x_2-x_1)}y_2.\]

    In the above, plugging in, for example, \(x=x_1\) has the first and third terms cancelling out with zero and the middle term turning into \(1\cdot y_1\), as desired. We can follow this pattern to arrive at the full Lagrange polynomial.

    THE LAGRANGE POLYNOMIAL
    Given \(n+1\) data points \((x_0,y_0), (x_1,y_1), \ldots, (x_n,y_n)\) with \(x_0<x_1<\cdots<x_n\), the Lagrange polynomial is the \(n\)th degree polynomial passing through each of these points and written as: \[y=\frac{(x-x_1)(x-x_2)\cdots(x-x_n)}{(x_0-x_1)(x_0-x_2)\cdots (x_0-x_n)}y_0 + \frac{(x-x_0)(x-x_2)\cdots(x-x_n)}{(x_1-x_0)(x_1-x_2)\cdots (x_1-x_n)}y_1 + \cdots + \frac{(x-x_0)(x-x_1)\cdots(x-x_{n-1})}{(x_n-x_0)(x_n-x_1)\cdots (x_n-x_{n-1})}y_n\] Equivalently, we can use product notation: \[y=\sum_{i=0}^n\left(y_i\prod_{\substack{j=0 \\ j\neq i}}^n\frac{x-x_j}{x_i-x_j}\right)\]

    Note that in the above polynomial, each numerator is written such that, for \(x=x_i\), each coefficient vanishes except for the coefficient to \(y_i\), which evaluates to \(y_i\). Thus the above polynomial passes through each of the desired data points and, as can be checked, is of degree \(n\). 

    Now, let's work with Python. To do this, we use function blocks for the first time. We have used functions in the past in Python, such as sin(x) or cos(x). Here, we create our own function using the def keyword. Below, we define f(o), where o is the dynamic variable. At the end of a function block, we "return", using the return keyword, the result of the function calculation. In the code below, the variable o represents the variable x in the Lagrange Polynomial definition above. We do this since x is already used for our data points.

    import numpy as np
    import matplotlib.pyplot as plot
    
    #Data goes through the points (1,3) and (5,7)
    x=[1,5]
    y=[3,7]
    
    #Set the number of data points
    pts=len(x)-1
    prange=np.linspace(x[0],x[pts],50)
    
    plot.plot(x,y,marker='o', color='r', ls='',markersize=10)
    
    def f(o):
        z=((o-x[1])/(x[0]-x[1]))*y[0] + ((o-x[0])/(x[1]-x[0]))*y[1]
        return z
    
    plot.plot(prange,f(prange))
    plot.show()
    

    output:

    clipboard_ef086360fe23bee56d87316729189cbc0.png

     

    Now, we do the same as the above except with 3 data points. Notice how the only changes are the data point lists and the function. Below, we again use the "\" symbol to let Python know to continue on the next line. This is done to make the polynomial easier to read.

    import numpy as np
    import matplotlib.pyplot as plot
    
    #data goes through the points (4,1), (6,1) and (8,0)
    x=[4,6,8]
    y=[53,32,60]
    
    n=len(x)-1
    prange = np.linspace(x[0],x[n],50)
    
    plot.plot(x,y,marker='o', color='r', ls='', markersize=10)
    
    def f(o):
      z=\
      (((o-x[1])*(o-x[2]))/((x[0]-x[1])*(x[0]-x[2])))*y[0]+\
      (((o-x[0])*(o-x[2]))/((x[1]-x[0])*(x[1]-x[2])))*y[1]+\
      (((o-x[0])*(o-x[1]))/((x[2]-x[0])*(x[2]-x[1])))*y[2]
      return z
    
    plot.plot(prange,f(prange))
    plot.show()
    

    output:

    clipboard_e0b4c445c12df84e440974548517c2392.png

    Using the product notation of Lagrange Polynomials, we can even come up with a program that accepts any number of data points. \[y=\sum_{i=0}^n\left(y_i\prod_{\substack{j=0 \\ j\neq i}}^n\frac{x-x_j}{x_i-x_j}\right)\] In the code below, \(i\) and \(j\) represent the \(i\) and \(j\) in the definition above.

    import numpy as np
    import matplotlib.pyplot as plot
    
    x=[1,3,5,7,8,9,10,12,13]
    y=[50,-30,-20,20,5,1,30,80,-10]
    
    n=len(x)-1
    prange = np.linspace(min(x),max(x),500)
    
    plot.plot(x,y,marker='o', color='r', ls='', markersize=10)
    
    def f(o):
      sum = 0
      for i in range(n+1):
        prod = y[i]
        for j in range(n+1):
          if i!= j:
            prod=prod*(o-x[j])/(x[i]-x[j])
        sum = sum + prod
      return sum
    
    plot.plot(prange,f(prange))
    plot.show()
    

    output:

    clipboard_e8634088087fb93cf07b32b5fca8e6b2c.png

    While Lagrange polynomials are among the easiest methods to understand intuitively and are efficient for calculating a specific \(y(x)\), they fail when when attempting to either find an explicit formula \(y=a_0+a_1x+\cdots+a_nx^n\) or when performing incremental interpolation, that is, adding data points after the initial interpolation is performed. For incremental interpolation, we would need to complete re-perform the entire evaluation.

    3.2.2: Newton interpolation

    Newton interpolation is an alternative to the Lagrange polynomial. Though it appears more cryptic, it allows for incremental interpolation and provides an efficient way to find an explicit formula \(y=a_0+a_1x+\cdots+a_nx^n\).

    Newton interpolation is all about finding coefficients and then using those coefficients to calculate subsequent coefficients. Since an important part of Newton interpolation is that it can be used for incremental interpolation, let's start with a single data point and show the calculations as we add points.

    With one data point \((x_0,y_0)\), the calculation is simple:

    \[b_0=y_0\]

    and the polynomial is

    \[y=b_0.\]

    Let's add a new data point \((x_1,y_1)\). The next coefficient \(b_1\) is usually denoted by \([y_0,y_1]\):

    \[b_1=[y_0,y_1]=\frac{y_1-y_0}{x_1-x_0}\]

    and the polynomial is

    \[y=b_0+b_1(x-x_0).\]

    Notice how we did not have to re-calculate the entire polynomial, only the new coefficient to \((x-x_0)\).

    With a third data point \((x_2,y_2)\), we find the coefficient \(b_2=[y_0,y_1,y_2]\):

    \[b_2=[y_0,y_1,y_2]=\frac{[y_1,y_2]-[y_0,y_1]}{x_2-x_0}=\frac{\frac{y_2-y_1}{x_2-x_1}-\frac{y_1-y_0}{x_1-x_0}}{x_2-x_0}\]

    with polynomial

    \[y=b_0+b_1(x-x_0)+b_2(x-x_0)(x-x_1).\]

    You may have noticed the recursive nature of the previous definitions. This continues for Newton interpolation in general.

    NEWTON INTERPOLATION
    Given \(n+1\) data points \((x_0,y_0), (x_1,y_1), \ldots, (x_n,y_n)\) with \(x_0<x_1<\cdots<x_n\), the Newton interpolation polynomial is the \(n\)th degree polynomial passing through each of these points and written as: \[y=b_0+b_1(x-x_0)+b_2(x-x_0)(x-x_1)+\cdots+b_{n}(x-x_0)(x-x_1)\cdots(x-x_{n-1})\] where \[ \begin{align} b_0 &= y_0\\ b_2 &= [y_0,y_1] = \frac{y_1-y_0}{x_1-x_0}\\ b_2 &= [y_0,y_1,y_2] = \frac{\frac{y_2-y_1}{x_2-x_1}-\frac{y_1-y_0}{x_1-x_0}}{x_2-x_0}\\ &\vdots\\ b_{n} &= [y_0, y_2, \ldots, y_n] = \frac{[y_1, y_2, \ldots, y_n] - [y_0, y_1, \ldots, y_{n-1}]}{x_{n}-x_0} \end{align} \]

    Let's begin by finding a polynomial with three data points using Newton's Method.

    Example: Use Newton's method to calculating a polynomial through the points \((1,3), (5,7)\) and \((8,0)\).

    For this example, we will use a "tableau" to help organize our data.

    \(x_0\) \(y_0\)    
    \(x_1\) \(y_1\) \([y_1,y_0]\)  
    \(x_2\) \(y_2\) \([y_2,y_1]\) \([y_0,y_1,y_2]\)

    We start by filling in our data points:

    1 3    
    5 7 \([y_1,y_0]\)  
    8 0 \([y_2,y_1]\) \([y_0,y_1,y_2]\)

    Then we calculate: \[[y_1,y_0]=\frac{7-3}{5-1}=1\] \[[y_2,y_1]=\frac{0-7}{8-5}=-\frac{7}{3}\] and fill in this data:

    1 3    
    5 7 1  
    8 0 \(-\frac{7}{3}\) \([y_0,y_1,y_2]\)

    Now, we calculate the remaining item, using the previously-calculated terms: \[[y_0,y_1,y_2]=\frac{[y_1,y_2]-[y_0,y_1]}{x_2-x_0}=\frac{-\frac{7}{3}-1}{8-1}=-\frac{10}{21}\]

    1 3    
    5 7 1  
    8 0 \(-\frac{7}{3}\) \(-\frac{10}{21}\)

    Note, now, that \(b_0, b_1,\) and \(b_2\) are written on the top diagonal. Thus our final polynomial is: \[y=b_0+b_1(x-x_0)+b_2(x-x_0)(x-x_1)=3+1(x-1)-\frac{10}{21}(x-1)(x-5)\]

    Now, let's program this for three data points to check our work!

    import numpy as np
    import matplotlib.pyplot as plot
    
    x=[1,5,8]
    y=[3,7,0]
    
    n=len(x)-1
    prange = np.linspace(min(x),max(x),500)
    
    plot.plot(x,y,marker='o', color='r', ls='', markersize=10)
    
    def f(o):
      b0=y[0]
      b1=(y[1]-y[0])/(x[1]-x[0])
      b1p=(y[2]-y[1])/(x[2]-x[1])
      b2=(b1p-b1)/(x[2]-x[0])
      poly=b0+b1*(o-x[0])+b2*(o-x[0])*(o-x[1])
      return poly
    
    plot.plot(prange,f(prange))
    plot.show()
    

    output:

    clipboard_ecc587ffcb22fa6d947d2bb6c5f691ba2.png

    A general program can be made by using a recursive function.

    import numpy as nm
    import matplotlib.pyplot as plot
    
    x=[-5,-4,-3,-2,-1,0,1,2,3,4,5]
    y=[0,0,0.1,0.3,0.7,1,0.7,0.3,0.1,0,0]
    
    plot.plot(x,y,marker='o', color='r', ls='',markersize=10)
    
    def grad(a,b):
        if a==0: return y[b]
        return (grad(a-1,b)-grad(a-1,a-1))/(x[b]-x[a-1])
        
    
    def f(o):
        yres=0
        for p in range(len(x)):
            prodres=grad(p,p)
            for q in range(p):
                prodres*=(o-x[q])
            yres+=prodres
        return yres
    prange=nm.linspace(x[0],x[-1],200)
    plot.plot(prange,f(prange))
    plot.show()
    

    output:

    clipboard_e9c10065bb971a9d25952e8390b5c8a92.png

    Note that above, we have something strange happening near the end points. This is known as Runge's phenomenon and mainly occurs at the endges of an interval when using polynomial interpolation with polynomials of high degree over a set of points that are equally spaced. Because of Runge's phenomenon, it is often the case that going to higher degrees does not always improve accuracy. To combat this, we can use a method such as cubic splines, which we discuss here.

    3.2.3: Cubic Splines

    spline is a function defined piecewise by polynomials. Instead of having a single polynomial that goes through each data point, as we have done so far, we instead define several polynomials between each of the points. While defining several polynomials might take more work, it is usually preferred since it gives similar results while avoiding Runge's phenomenon.

    A linear spline is created by simply drawing lines between each of the data points. Using our data points from earlier, we can create a reasonable approximation of our underlying function.

    clipboard_e8e212c015aed62ddb3b2f0a05c1fcf4a.png

    While simplistic, this approximation is likely better than that generated when using the same data points and Newton's method. This is due to the absence of Runge's phenomenon. To make the picture look even better, we can replace the lines by cubic functions. When doing so, we will end up with a number of cubic functions equal to one less than the number of data points - that is, one for every interval between the data points. We call this function \(s(x)\), which can be defined as follows.

    \[ s(x) = \left\{ \begin{array}{lr} s_0(x)=a_0x^3+b_0x^2+c_0x+d_0 & \text{if } x_0\leq x\leq x_1\\ s_1(x)=a_1x^3+b_1x^2+c_1x+d_1 & \text{if } x_1\leq x\leq x_2\\ \vdots\\ s_{n-1}(x)=a_{n-1}x^3+b_{n-1}x^2+c_{n-1}x+d_{n-1} & \text{if } x_{n-1}\leq x\leq x_n\\ \end{array} \right \]

     

     


    3.2: Polynomial Interpolation is shared under a not declared license and was authored, remixed, and/or curated by LibreTexts.

    • Was this article helpful?