---
title: Chebyshev Polynomial Interpolation
url: https://www.emergentmind.com/topics/polynomial-chebyshev-interpolation
type: topic
---

# Chebyshev Polynomial Interpolation

Polynomial (Chebyshev) interpolation refers to the construction of an algebraic polynomial, typically expressed in a Chebyshev polynomial basis, that interpolates a function at a prescribed set of nodes. When the nodes are chosen as the zeros or extrema of Chebyshev polynomials, or their multispace generalizations such as Lissajous–Chebyshev sets, the resulting interpolation schemes possess optimal stability, minimax error properties, and efficient numerical implementations. The theory covers the classical univariate context, tensorized multivariate grids, non-tensorial nodesets (Padua, Lissajous), filtered variants for improved uniform approximation, and adaptive domain decompositions. It also underpins sparse interpolation, error-resilient algorithms, and applications in scientific computing and computational finance.

## 1. Mathematical Foundations and Node Systems

Chebyshev polynomials of the first kind, defined by \( T_n(x) = \cos(n \arccos x) \) on \([-1,1]\), form an orthogonal system with respect to the weight \( w(x) = (1-x^2)^{-1/2} \). Their zeros and extrema,
\[
x^{(z)}_k = \cos \Big( \frac{(2k+1)\pi}{2n+2} \Big),\quad x^{(e)}_k = \cos \Big( \frac{k\pi}{n} \Big),\quad k=0,\ldots,n,
\]
are used as interpolation nodes due to their optimal distribution: the associated Lebesgue constant grows only logarithmically in \(n\) and the nodes minimize the maximum of the interpolation error kernel, achieving near-minimax properties [2404.00414].

Multivariate extensions adopt tensor products (Chebyshev grids) or more sophisticated node sets such as Padua points, degenerate Lissajous curves, and general Lissajous–Chebyshev lattices, parameterized via number-theoretic properties (e.g., coprimality conditions) and parity constraints on multi-indices. Lissajous–Chebyshev nodes uniformly subsume classical Padua and Morrow-Patterson-Xu points and allow both dense (tensor-product) and sparse, highly efficient interpolatory schemes [1511.04564, 1711.00557, 1503.00895].

## 2. Interpolation Schemes and Stability

### 2.1 Classical Lagrange–Chebyshev Interpolation

The Lagrange interpolant using Chebyshev nodes—either nodes (roots) or extrema (Gauss-Lobatto)—is given by:
\[
P_n[f](x) = \sum_{k=0}^n f(x_k) \ell_k(x),\qquad
\ell_k(x) = \prod_{j\ne k} \frac{x-x_j}{x_k-x_j}.
\]
Its barycentric formulation is numerically stable and allows \(O(n)\) evaluation per point [2112.09703, 2404.00414, 1609.08839].

For any smooth \(f\), the interpolation error at Chebyshev nodes is given by
\[
|f(x) - P_n[f](x)| = \frac{|f^{(n+1)}(\xi)|}{(n+1)!} \prod_{k=0}^n |x - x_k|,\quad \xi \in [-1,1].
\]
Use of Chebyshev nodes minimizes \( \max_{x\in[-1,1]} \left| \prod_{k=0}^n (x-x_k) \right| \), thereby almost minimizing the interpolation error for any given degree.

### 2.2 Lebesgue Constants and Minimax Properties

The Lebesgue constant,
\[
\Lambda_n = \max_{x\in[-1,1]} \sum_{k=0}^n |\ell_k(x)|,
\]
governs the uniform stability of interpolation. Chebyshev nodes yield \( \Lambda_n = O(\log n) \). For multivariate tensor grids, \( \Lambda_{\mathbf n} = O\left( \prod_{j=1}^d \log (n_j+1) \right) \) [1608.03451, 2311.18656]. Lissajous–Chebyshev nodes achieve the same order, \( \Lambda \asymp \prod_j \log(n_j+1) \), as full tensor grids, even with "half" the node count [1608.03451, 1711.00557].

Non-tensorial node sets (Padua, rank-1 Lissajous) have Lebesgue constants growing polylogarithmically, e.g., Padua points with \(O(\log^2 n)\) in two dimensions [1503.00895].

## 3. Error Bounds and Convergence Analysis

For analytic \(f\) extending to a Bernstein ellipse \(E_\rho\), Chebyshev interpolation achieves geometric convergence:
\[
|f(x) - P_n[f](x)| \leq C\, \rho^{-n},\qquad C \sim \sup_{z\in E_\rho} |f(z)|\;/\,(\rho-1).
\]
In the multivariate tensor setting, the error bound improves to [1611.08706, 1505.04648]:
\[
\| f - I_{\mathbf N}[f] \|_\infty \leq 2^{d/2+1} V \left( \sum_{j=1}^d \rho_j^{-2N_j} / \prod_{i=1}^d (1-\rho_i^{-2}) \right)^{1/2}.
\]
If all \(\rho_j\) are equal and \(N_1 = \ldots = N_d = N\), the decay remains essentially spectral, while alternative bounds (e.g., anisotropic orderings) can sharpen error guarantees [1611.08706].

If \(f^{(r)}\) has bounded variation, the error decays algebraically at the optimal rate \(O(n^{-r})\) [1411.7746].

## 4. Advanced Schemes: Filtering, Partitioning, and Least-Squares

### 4.1 Filtered (de la Vallée–Poussin) Interpolation

Filtered polynomial interpolation via de la Vallée–Poussin means employs a low-pass filter \(\mu_{n,j}^m\) applied to the Chebyshev expansion coefficients:
\[
V_n^m f(x) = \sum_{j=0}^{n+m-1} \mu_{n,j}^m\, \hat f_{n,j}\, p_j(x),
\]
where \(\hat f_{n,j}\) are the (discrete) Chebyshev coefficients [2008.00240, 2101.04551]. This scheme preserves values at the nodes, avoids the logarithmic ("Lebesgue penalty") blow-up, and achieves uniform operator-norm boundedness under necessary and sufficient conditions on the weighted norm exponents.

Filtered interpolants admit near-best uniform-norm approximation error, with rates governed by the smoothness of \(f\) and the width \(m\), and suppress Gibbs-type phenomena for non-smooth data. For valid (Chebyshev or Jacobi) weights, the Lebesgue constant of the filtered operator remains uniformly bounded in \(n\), unlike the diverging constants of classical Lagrange interpolation [2008.00240, 2101.04551].

### 4.2 Partition of Unity and Adaptive Splitting

When \(f\) has singularities near the interval or localized features, adaptive domain partitioning accelerates convergence. The partition-of-unity approach covers the domain with overlapping subintervals, constructs high-degree Chebyshev interpolants locally, and blends them via \(C^\infty\) weights:
\[
f_N(x) = \sum_{i=1}^M w_i(x) p_i(x).
\]
The global error is no worse than the worst local error, and by judicious splitting, exponential convergence is restored even when the global analytic domain is narrow [1708.02611].

### 4.3 Mock-Chebyshev Interpolation

When only uniform samples are available, mock-Chebyshev strategies interpolate on subsets of equispaced nodes that mimic Chebyshev–Lobatto points, followed by least-squares correction on the residual. The approach yields substantial suppression of the Runge phenomenon, achieving error rates of \(O(\rho^{-\sqrt{n}})\) and uniform-norm improvement under analyticity [1407.2395].

## 5. Multivariate, Sparse, and Error-Resilient Interpolation

Multivariate Chebyshev interpolation extends via tensor products or non-tensor Lissajous–Chebyshev sets [1511.04564, 1711.00557]. For high-dimensional or sparse regimes, Prony-type sparse interpolation enables the exact recovery of Chebyshev expansions with at most \(r\) terms,

Source: https://www.emergentmind.com/topics/polynomial-chebyshev-interpolation