Chebyshev Approximation
Chebyshev polynomials provide optimal approximations by minimizing maximum error, and Chebyshev nodes mitigate Runge oscillations in polynomial interpolation through strategic point placement.
The Chebyshev polynomials of the first kind are defined by:
They satisfy the recurrence relation:
The Chebyshev polynomials are orthogonal on with weight and satisfy for .
The minimax property of Chebyshev polynomials makes them fundamental in approximation theory. Among all monic polynomials of degree , has the smallest maximum absolute value on , equal to .
The Chebyshev nodes of the first kind on are:
These are the zeros of . For an arbitrary interval , transform via:
Interpolating (Runge's example) on with points:
Equally-spaced nodes: Maximum error near (wild oscillations)
Chebyshev nodes: Maximum error (well-behaved approximation)
The error improvement is dramatic: Chebyshev nodes cluster near endpoints where interpolation error is typically largest, balancing error across the interval.
Interpolation Error Bound: For polynomial interpolation at Chebyshev nodes, the error satisfies:
This is nearly optimal (within a factor of 2) among all possible node choices. The product achieves its minimum maximum value when the are Chebyshev nodes, a consequence of the minimax property of Chebyshev polynomials.
Chebyshev approximations extend to best approximation theory. The Chebyshev expansion of on is: where coefficients are computed via orthogonality. This expansion converges rapidly for smooth functions and forms the basis of spectral methods in numerical PDE solving.
The Remez exchange algorithm constructs the polynomial of degree that minimizes (best uniform approximation). This polynomial oscillates between maximum error at points, characterized by the equioscillation theorem. Chebyshev interpolation provides a near-optimal approximation that is computationally simpler than the exact minimax polynomial.