Chebyshev Polynomial of the First Kind — Definition, Formula & Examples
Chebyshev polynomials of the first kind are a sequence of orthogonal polynomials defined on that satisfy . They arise naturally in approximation theory, where they minimize the maximum error when approximating functions by polynomials.
For each non-negative integer , the Chebyshev polynomial of the first kind is the unique polynomial of degree satisfying for all . Equivalently, can be defined by the recurrence , , and . These polynomials are orthogonal on with respect to the weight function .
Key Formula
Where:
- = Chebyshev polynomial of the first kind of degree $n$
- = Variable, typically restricted to $[-1,1]$
- = Non-negative integer degree
How It Works
You can generate any Chebyshev polynomial using the three-term recurrence relation: start with and , then repeatedly apply . For small arguments, the trigonometric definition lets you evaluate the polynomial directly. The roots of are for , and these roots serve as optimal interpolation nodes that minimize Runge's phenomenon.
Worked Example
Problem: Use the recurrence relation to find .
Base cases: Start with the first two Chebyshev polynomials.
Compute T₂: Apply the recurrence with .
Compute T₃: Apply the recurrence again with .
Answer: . You can verify: , which matches the triple-angle formula.
Why It Matters
Chebyshev polynomials are the backbone of spectral methods in numerical analysis and scientific computing. Their roots provide the optimal nodes for polynomial interpolation, directly reducing approximation error in finite element analysis, signal processing filters, and computational physics simulations.
Common Mistakes
Mistake: Forgetting the factor of 2 in the recurrence and writing .
Correction: The correct recurrence is . Missing the 2 produces incorrect polynomials for .
