Maxima - 什么 returns 函数 chebyshev_t(n, t)
Maxima - what returns a function chebyshev_t(n, t)
我可能有一个非常简单的问题。
Maxima函数chebyshev_t(n, t)中的returns是什么?我的意思是精确的数学公式。
此致
当 n
是文字整数(例如 2、3、5 等)时,chebyshev_t
计算为多项式。
当 n
是一个声明为整数的符号(通过 declare(n, integer)
然后 chebyshev_t
求和。
(%i1) display2d : false $
(%i2) chebyshev_t (5, u);
(%o2) -25*(1-u)-16*(1-u)^5+80*(1-u)^4-140*(1-u)^3+100*(1-u)^2+1
(%i3) declare (m, integer);
(%o3) done
(%i4) chebyshev_t (m, u);
(%o4) 'sum(pochhammer(-m,i1)*pochhammer(m,i1)*(1-u)^i1
/(pochhammer(1/2,i1)*2^i1*i1!),i1,0,m)
我可能有一个非常简单的问题。
Maxima函数chebyshev_t(n, t)中的returns是什么?我的意思是精确的数学公式。
此致
当 n
是文字整数(例如 2、3、5 等)时,chebyshev_t
计算为多项式。
当 n
是一个声明为整数的符号(通过 declare(n, integer)
然后 chebyshev_t
求和。
(%i1) display2d : false $
(%i2) chebyshev_t (5, u);
(%o2) -25*(1-u)-16*(1-u)^5+80*(1-u)^4-140*(1-u)^3+100*(1-u)^2+1
(%i3) declare (m, integer);
(%o3) done
(%i4) chebyshev_t (m, u);
(%o4) 'sum(pochhammer(-m,i1)*pochhammer(m,i1)*(1-u)^i1
/(pochhammer(1/2,i1)*2^i1*i1!),i1,0,m)