NAG Library Routine Document
G01SKF
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.
1 Purpose
G01SKF returns a number of the lower tail, upper tail and point probabilities for the Poisson distribution.
2 Specification
INTEGER
LL, LK, K(LK), IVALID(*), IFAIL
REAL (KIND=nag_wp)
L(LL), PLEK(*), PGTK(*), PEQK(*)
3 Description
Let
denote a vector of random variables each having a Poisson distribution with parameter
. Then
The mean and variance of each distribution are both equal to
.
G01SKF computes, for given
and
the probabilities:
,
and
using the algorithm described in
Knüsel (1986).
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
Knüsel L (1986) Computation of the chi-square and Poisson distribution SIAM J. Sci. Statist. Comput. 7 1022–1036
5 Parameters
- 1: LL – INTEGERInput
On entry: the length of the array
L Constraint:
.
- 2: L(LL) – REAL (KIND=nag_wp) arrayInput
On entry: , the parameter of the Poisson distribution with , , for .
Constraint:
, for .
- 3: LK – INTEGERInput
On entry: the length of the array
K Constraint:
.
- 4: K(LK) – INTEGER arrayInput
On entry: , the integer which defines the required probabilities with , .
Constraint:
, for .
- 5: PLEK() – REAL (KIND=nag_wp) arrayOutput
-
Note: the dimension of the array
PLEK
must be at least
.
On exit: , the lower tail probabilities.
- 6: PGTK() – REAL (KIND=nag_wp) arrayOutput
-
Note: the dimension of the array
PGTK
must be at least
.
On exit: , the upper tail probabilities.
- 7: PEQK() – REAL (KIND=nag_wp) arrayOutput
-
Note: the dimension of the array
PEQK
must be at least
.
On exit: , the point probabilities.
- 8: 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.
On entry, .
On entry, .
On entry, .
- 9: 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
L or
K was invalid.
Check
IVALID for more information.
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
Dynamic memory allocation failed.
7 Accuracy
Results are correct to a relative accuracy of at least on machines with a precision of or more decimal digits (provided that the results do not underflow to zero).
The time taken by G01SKF to calculate each probability depends on and . For given , the time is greatest when , and is then approximately proportional to .
9 Example
This example reads a vector of values for and , and prints the corresponding probabilities.
9.1 Program Text
Program Text (g01skfe.f90)
9.2 Program Data
Program Data (g01skfe.d)
9.3 Program Results
Program Results (g01skfe.r)