Previous Up Next

6.30.5  Tchebychev polynomial of the second kind: tchebyshev2

The Tchebychev polynomial of second kind U(n,x) is defined by:

  U(n,x)=
sin((n+1).arccos(x))
sin(arccos(x))

or equivalently:

  sin((n+1)x)=sin(x)*U(n,cos(x))

These satisfy the recurrence relation:

     
   U(0,x)=1          
U(1,x)=2x          
U(n,x)=2xU(n−1,x)−U(n−2,x)          

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

  <f,g>=
+1


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

The tchebyshev2 command finds the Tchebychev polynomials of the first kind.


Examples.


Previous Up Next