Note: before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.
The gamma distribution with shape parameter and scale parameter has PDF
If then an algorithm based directly on the gamma distribution's PDF is used. For values outside this range, the function is calculated via the Poisson distribution's PDF as described in Loader (2000) (see Section 8).
The input arrays to this routine are designed to allow maximum flexibility in the supply of vector parameters by re-using elements of any arrays that are shorter than the total number of evaluations required. See Section 2.6 in the G01 Chapter Introduction for further information.
4 References
Loader C (2000) Fast and accurate computation of binomial probabilities (not yet published)
5 Parameters
1: ILOG – INTEGERInput
On entry: the value of ILOG determines whether the logarithmic value is returned in PDF.
, the probability density function is returned.
, the logarithm of the probability density function is returned.
Note: the dimension of the array PDF
must be at least
.
On exit: or .
9: IVALID() – INTEGER arrayOutput
Note: the dimension of the array IVALID
must be at least
.
On exit: indicates any errors with the input arguments, with
No error.
.
.
overflows, the value returned should be a reasonable approximation.
10: IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to , . If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value is recommended. If the output of error messages is undesirable, then the value is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is . When the value is used it is essential to test the value of IFAIL on exit.
On exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6 Error Indicators and Warnings
If on entry or , explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
On entry, at least one value of X, A or B was invalid.
Check IVALID for more information.
On entry, .
Constraint: or .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
7 Accuracy
Not applicable.
8 Further Comments
Due to the lack of a stable link to Loader (2000) paper, we give a brief overview of the method, as applied to the Poisson distribution. The Poisson distribution has a continuous mass function given by,
(1)
The usual way of computing this quantity would be to take the logarithm and calculate,
For large and , and are very large, of the same order of magnitude and when calculated have rounding errors. The subtraction of these two terms can therefore result in a number, many orders of magnitude smaller and hence we lose accuracy due to subtraction errors. For example for and , and . But calculated with the method shown later we have . The difference between these two results suggests a loss of about 7 significant figures of precision.
Loader introduces an alternative way of expressing (1) based on the saddle point expansion,
(2)
where , the deviance for the Poisson distribution is given by,
(3)
and
For close to , can be evaluated through the series expansion
otherwise can be evaluated directly. In addition, Loader suggests evaluating using the Stirling–De Moivre series,
(4)
where the error is given by
Finally can be evaluated by combining equations (1)–(4) to get,
9 Example
This example prints the value of the gamma distribution PDF at six different points with differing and .