NAG Library Routine Document
g01slf (prob_hypergeom_vector)
1
Purpose
g01slf returns a number of the lower tail, upper tail and point probabilities for the hypergeometric distribution.
2
Specification
Fortran Interface
Subroutine g01slf ( |
ln, n, ll, l, lm, m, lk, k, plek, pgtk, peqk, ivalid, ifail) |
Integer, Intent (In) | :: | ln, n(ln), ll, l(ll), lm, m(lm), lk, k(lk) | Integer, Intent (Inout) | :: | ifail | Integer, Intent (Out) | :: | ivalid(*) | Real (Kind=nag_wp), Intent (Out) | :: | plek(*), pgtk(*), peqk(*) |
|
C Header Interface
#include <nagmk26.h>
void |
g01slf_ (const Integer *ln, const Integer n[], const Integer *ll, const Integer l[], const Integer *lm, const Integer m[], const Integer *lk, const Integer k[], double plek[], double pgtk[], double peqk[], Integer ivalid[], Integer *ifail) |
|
3
Description
Let
denote a vector of random variables having a hypergeometric distribution with parameters
,
and
. Then
where
,
and
.
The hypergeometric distribution may arise if in a population of size a number are marked. From this population a sample of size is drawn and of these are observed to be marked.
The mean of the distribution , and the variance .
g01slf computes for given
,
,
and
the probabilities:
,
and
using an algorithm similar to that described in
Knüsel (1986) for the Poisson distribution.
The input arrays to this routine are designed to allow maximum flexibility in the supply of vector arguments 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
Arguments
- 1: – IntegerInput
-
On entry: the length of the array
n.
Constraint:
.
- 2: – Integer arrayInput
-
On entry: , the parameter of the hypergeometric distribution with , , for .
Constraint:
, for .
- 3: – IntegerInput
-
On entry: the length of the array
l.
Constraint:
.
- 4: – Integer arrayInput
-
On entry: , the parameter of the hypergeometric distribution with , .
Constraint:
.
- 5: – IntegerInput
-
On entry: the length of the array
m.
Constraint:
.
- 6: – Integer arrayInput
-
On entry: , the parameter of the hypergeometric distribution with , .
Constraint:
.
- 7: – IntegerInput
-
On entry: the length of the array
k.
Constraint:
.
- 8: – Integer arrayInput
-
On entry: , the integer which defines the required probabilities with , .
Constraint:
.
- 9: – Real (Kind=nag_wp) arrayOutput
-
Note: the dimension of the array
plek
must be at least
.
On exit: , the lower tail probabilities.
- 10: – Real (Kind=nag_wp) arrayOutput
-
Note: the dimension of the array
pgtk
must be at least
.
On exit: , the upper tail probabilities.
- 11: – Real (Kind=nag_wp) arrayOutput
-
Note: the dimension of the array
peqk
must be at least
.
On exit: , the point probabilities.
- 12: – 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, | , |
or | , |
or | , |
or | . |
On entry, | is too large to be represented exactly as a real number. |
On entry, | the variance (see Section 3) exceeds . |
- 13: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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
n,
l,
m or
k was invalid, or the variance was too large.
Check
ivalid for more information.
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
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).
8
Parallelism and Performance
g01slf is not threaded in any implementation.
The time taken by
g01slf to calculate each probability depends on the variance (see
Section 3) and on
. For given variance, the time is greatest when
(
the mean), and is then approximately proportional to the square-root of the variance.
10
Example
This example reads a vector of values for , , and , and prints the corresponding probabilities.
10.1
Program Text
Program Text (g01slfe.f90)
10.2
Program Data
Program Data (g01slfe.d)
10.3
Program Results
Program Results (g01slfe.r)