Beta
Beta function
Calling Sequence
Parameters
Description
Examples
Beta(x, y)
Β⁡x,y
x
-
algebraic expression
y
The Beta(x,y) function (Beta function) is defined in general as follows:
Β⁡x,y=Γ⁡x⁢Γ⁡yΓ⁡x+y
with the following exceptions due to GAMMA being singluar at non-positive integers:
When x+y is a non-positive integer but x and y are not, then Beta(x,y) is 0.
If x is a non-positive integer then Beta(x,y) is defined by the limit:
Β⁡x,y=limt→0⁡Γ⁡x+t⁢Γ⁡yΓ⁡x+t+y
If y is a non-positive integer but x is not, then Beta(x,y) is defined by the symmetry relation Beta(x,y) = Beta(y,x), and the above limit is used.
In the cases above where the limit is computed and is finite - for example, when x and x+y are non-positive integers but y>0 - Maple signals the invalid_operation numeric event, allowing the user to control this singular behavior by catching the event. For more information, see numeric_events.
Note that Beta(x,y) can be represented by the following integral:
Β⁡p,q=∫01xp−1⁢1−xq−1ⅆx
when Re(p) > 0 and Re(q) > 0.
Also Beta(x,y) is related to the binomial coefficient via Beta(x,y) * binomial(x+y, x) = (x+y)/x/y.
You can enter the command Beta using either the 1-D or 2-D calling sequence. For example, Beta(1, 2) is equivalent to Β⁡1,2.
Β⁡1,2
12
Β⁡1.2+3.4⁢I,−2.1+5.7⁢I
0.6600944470−1.126821143⁢I
Β⁡−32,−52
0
NumericStatus⁡invalid_operation=false:
Β⁡−3,2
16
NumericStatus⁡invalid_operation
true
See Also
binomial
events
GAMMA
initialfunctions
NumericStatus
Download Help Document