Article 376EM Chebyshev interpolation

Chebyshev interpolation

by
John
from John D. Cook on (#376EM)

Fitting a polynomial to a function at more points might not produce a better approximation. This is Faber's theorem, something I wrote about the other day.

If the function you're interpolating is smooth, then interpolating at more points may or may not improve the fit of the interpolation, depending on where you put the points. The famous example of Runge shows that interpolating

f(x) = 1 / (1 + x^2)

at more points can make the fit worse. When interpolating at 16 evenly spaced points, the behavior is wild at the ends of the interval.

chebyplot11.svg

Here's the Python code that produced the plot.

 import matplotlib.pyplot as plt from scipy import interpolate, linspace def cauchy(x): return (1 + x**2)**-1 n = 16 x = linspace(-5, 5, n) # points to interpolate at y = cauchy(x) f = interpolate.BarycentricInterpolator(x, y) xnew = linspace(-5, 5, 200) # points to plot at ynew = f(xnew) plt.plot(x, y, 'o', xnew, ynew, '-') plt.show()

However, for smooth functions interpolating at more points does improve the fit if you interpolate at the roots of Chebyshev polynomials. As you interpolate at the roots of higher and higher degree Chebyshev polynomials, the interpolants converge to the function being interpolated. The plot below shows how interpolating at the roots of T16, the 16th Chebyshev polynomial, eliminates the bad behavior at the ends.

chebyplot21.svg

To make this plot, we replaced x above with the roots of T16, rescaled from the interval [-1, 1] to the interval [-5, 5] to match the example above.

 x = [cos(pi*(2*k-1)/(2*n)) for k in range(1, n+1)] x = 5*array(x)

What if the function we're interpolating isn't smooth? If the function has a step discontinuity, we can see Gibbs phenomena, similar to what we saw in the previous post. Here's the result of interpolating the indicator function of the interval [-1, 1] at 100 Chebyshev points. We get the same "bat ears" as before.

chebyplot3.svg

Related: Help with interpolation

t1jBP9NU7dA
External Content
Source RSS or Atom Feed
Feed Location http://feeds.feedburner.com/TheEndeavour?format=xml
Feed Title John D. Cook
Feed Link https://www.johndcook.com/blog
Reply 0 comments