Overview¶
Computers can only perform arithmetic. To work with functions like or solutions to differential equations, we need approximations. Polynomials are the natural choice:
Easy to evaluate (Horner’s method, barycentric formulas)
Easy to differentiate and integrate
Converge rapidly for smooth functions
The key insight from Trefethen’s Approximation Theory and Approximation Practice is that we can work in two dual spaces:
| Representation | Description | Advantages |
|---|---|---|
| Value space | Direct sampling, differentiation matrices | |
| Coefficient space | in | Integration, coefficient decay analysis |
The DCT (Discrete Cosine Transform) converts between them in operations.
Why Chebyshev?¶
For polynomial interpolation on , node placement matters enormously:
Equally spaced nodes: Runge phenomenon—error grows exponentially!
Chebyshev nodes: Error decreases exponentially for smooth functions
Chebyshev polynomials are optimal in a minimax sense.
Chapter Contents¶
The interpolation problem and barycentric formulas for stable evaluation.
Optimal node placement, minimax properties, and defeating Runge’s phenomenon.
The dual representations and the DCT/FFT transforms between them.
Computing derivatives in value space—spectral differentiation.
Quadrature via Chebyshev coefficients vs. trapezoidal rule.
Why smooth functions achieve exponential convergence—coefficient decay theory.
Learning Outcomes¶
After completing this chapter, you should be able to:
L7.1: State existence/uniqueness for polynomial interpolation.
L7.2: Construct Lagrange basis polynomials and use barycentric evaluation.
L7.3: Explain Runge’s phenomenon and why Chebyshev nodes avoid it.
L7.4: Define Chebyshev polynomials via .
L7.5: Transform between values and coefficients using DCT.
L7.6: Construct and apply Chebyshev differentiation matrices.
L7.7: Integrate using Chebyshev coefficients.
L7.8: Relate coefficient decay to function smoothness.
L7.9: Explain spectral vs algebraic convergence rates.
Key Formulas¶
| Concept | Formula |
|---|---|
| Chebyshev polynomial | |
| Chebyshev nodes | , |
| Barycentric weights | |
| Values → Coefficients | DCT (Type I) |
| Coefficients → Values | Inverse DCT |
| Chebyshev integral | (even ) |
| Coefficient decay | if has bounded variation |
Applications¶
Function approximation: Represent , , special functions
Spectral methods: Solve ODEs/PDEs with exponential accuracy
Quadrature: High-accuracy numerical integration
Root finding: Chebyshev companion matrix methods
Connection to Fourier¶
Under the substitution :
Chebyshev polynomials become cosines:
The DCT is essentially a real FFT
Chebyshev interpolation cosine interpolation
This connection is why Chebyshev methods achieve “spectral accuracy”—the same exponential convergence as Fourier methods, but for non-periodic functions on .