pochhammer
general pochhammer function
Calling Sequence
Parameters
Description
Examples
pochhammer(z, a)
z
-
expression
a
The pochhammer symbol is defined for a positive integer n and complex number z as
pochhammerz,n=zz+1...z+n−1
This is extended analytically to complex n by using the formula
pochhammerz,a=Γz+aΓz
At all points z,a such that z and z+a are positive integers, this is equivalent to:
pochhammerz,a=limt→0Γz+a+tΓz+t
In the case that z is a non-positive integer, pochhammer(z,a) is defined by this limit.
In the case that both z and z+a are non-positive integers, Maple also signals the invalid_operation numeric event, allowing the user to control this singular behavior by catching the event. See numeric_events for more information.
pochhammer5,3
210
pochhammerz,2
pochhammerz,−3
1pochhammer−3+z,3
pochhammer2,I
Γ2+I
NumericStatusinvalid_operation=false:
pochhammer−3,2
6
NumericStatusinvalid_operation=false
invalid_operation=true
pochhammer0,0
1
NumericStatusinvalid_operation
true
diffpochhammera,x,x
pochhammera,xΨx+a
diffpochhammera,x,a
pochhammera,xΨx+a−Ψa
seriespochhammera,x,x,3
1+Ψax+Ψ1,a2+Ψa22x2+Ox3
pochhammerx,5
expand
x5+10x4+35x3+50x2+24x
pochhammer2,13
8π327Γ23
evalf
1.190639350
pochhammer−3.7+2.2I,1.5+2.7I
−0.0005620896042+0.01961129135I
convertpochhammera,x,Γ
Γx+aΓa
convertpochhammera,x,binomial
a+x−1a−1x!
convertpochhammera,x,factorial
a+x−1!a−1!
See Also
convert
diff
evalf
expand
GAMMA
initialfunctions
NumericStatus
series
Download Help Document