Previous Up Next

11.4.4 Chebyshev polynomials of the first kind

The Chebyshev polynomial of first kind T(n,x) is defined by

T(n,x)=cos(n arccos x)

and satisfy the recurrence relation:

T(0,x)=1,   T(1,x)=x,   T(n,x)=2xT(n−1,x)−T(n−2,x).

The polynomials T(n,x) are orthogonal for the scalar product

f,g⟩=
1


−1
f(x)g(x)
1−x2
dx.

The tchebyshev1 command finds the Chebyshev polynomials of the first kind.

Examples

tchebyshev1(4)
8 x4−8 x2+1           
tchebyshev1(4,y)
8 y4−8 y2+1           

Indeed, cos(4x)=Re((cos x+i sin x)4)=cos4 x−6cos2 x (1−cos2 x)+((1−cos2 x))2=T(4,cos(x)).


Previous Up Next