•
|
The Beta(x,y) function (Beta function) is defined in general as follows:
|
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:
|
•
|
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:
|
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 .
|