OrthogonalSeries
Degree
return the degree of a series with respect to one or more variables
Calling Sequence
Parameters
Description
Examples
Degree(S, x)
Degree(S, [x1,.., xn])
Degree(S)
S
-
orthogonal series
x, x1, .., xn
names
If S is a finite series, then the Degree(S, x) calling sequence returns the degree of S with respect to the variable x. If S is an infinite series, then the result is infinity.
The Degree(S, [x1,.., xn]) calling sequence returns [Degree(S, x1),..., Degree(S, xn)].
The Degree(S) calling sequence returns the maximum degree of S with respect to its variables. This allows the user to test whether a series is finite.
with⁡OrthogonalSeries:
S≔Create⁡0,0=3,1,2=−1,3,2=α,GegenbauerC⁡n,1,x,LaguerreL⁡m,1,y
S≔3⁢GegenbauerC⁡0,1,x⁢LaguerreL⁡0,1,y−GegenbauerC⁡1,1,x⁢LaguerreL⁡2,1,y+α⁢GegenbauerC⁡3,1,x⁢LaguerreL⁡2,1,y
Degree⁡S,x;Degree⁡S,y;Degree⁡S,x,y
3
2
3,2
Degree⁡S
S1≔Create⁡1n2,n=1..∞,ChebyshevT⁡n,x
S1≔∑n=1∞⁡ChebyshevT⁡n,xn2
Degree⁡S1,x;Degree⁡S1,y;Degree⁡S1
∞
0
S2≔Create⁡1n2,n=3..8,0=1,N=2,ChebyshevT⁡n,x
S2≔ChebyshevT⁡0,x+2⁢ChebyshevT⁡N,x+∑n=38⁡ChebyshevT⁡n,xn2
Degree⁡S2
max⁡8,N
See Also
ChebyshevT
GegenbauerC
LaguerreL
OrthogonalSeries[Create]
Download Help Document