NAG CL Interface
g01slc (prob_​hypergeom_​vector)

1 Purpose

g01slc returns a number of the lower tail, upper tail and point probabilities for the hypergeometric distribution.

2 Specification

#include <nag.h>
void  g01slc (Integer ln, const Integer n[], Integer ll, const Integer l[], Integer lm, const Integer m[], Integer lk, const Integer k[], double plek[], double pgtk[], double peqk[], Integer ivalid[], NagError *fail)
The function may be called by the names: g01slc, nag_stat_prob_hypergeom_vector or nag_prob_hypergeom_vector.

3 Description

Let X = Xi: i=1 , 2 ,, r denote a vector of random variables having a hypergeometric distribution with parameters ni, li and mi. Then
Prob Xi = ki = mi ki ni - mi li - ki ni li ,  
where max0, li + mi - ni ki minli,mi , 0lini and 0mini.
The hypergeometric distribution may arise if in a population of size ni a number mi are marked. From this population a sample of size li is drawn and of these ki are observed to be marked.
The mean of the distribution = limi ni , and the variance = limini-lini-mi ni2ni-1 .
g01slc computes for given ni, li, mi and ki the probabilities: ProbXiki, ProbXi>ki and ProbXi=ki using an algorithm similar to that described in Knüsel (1986) for the Poisson distribution.
The input arrays to this function 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: ln Integer Input
On entry: the length of the array n.
Constraint: ln>0.
2: n[ln] const Integer Input
On entry: ni, the parameter of the hypergeometric distribution with ni=n[j], j=i-1 mod ln, for i=1,2,,maxln,ll,lm,lk.
Constraint: n[j-1]0, for j=1,2,,ln.
3: ll Integer Input
On entry: the length of the array l.
Constraint: ll>0.
4: l[ll] const Integer Input
On entry: li, the parameter of the hypergeometric distribution with li=l[j], j=i-1 mod ll.
Constraint: 0 li ni .
5: lm Integer Input
On entry: the length of the array m.
Constraint: lm>0.
6: m[lm] const Integer Input
On entry: mi, the parameter of the hypergeometric distribution with mi=m[j], j=i-1 mod lm.
Constraint: 0 mi ni .
7: lk Integer Input
On entry: the length of the array k.
Constraint: lk>0.
8: k[lk] const Integer Input
On entry: ki, the integer which defines the required probabilities with ki=k[j], j=i-1 mod lk.
Constraint: max0, li + mi - ni ki minli,mi .
9: plek[dim] double Output
Note: the dimension, dim, of the array plek must be at least maxln,ll,lm,lk.
On exit: Prob Xi ki , the lower tail probabilities.
10: pgtk[dim] double Output
Note: the dimension, dim, of the array pgtk must be at least maxln,ll,lm,lk.
On exit: Prob Xi > ki , the upper tail probabilities.
11: peqk[dim] double Output
Note: the dimension, dim, of the array peqk must be at least maxln,ll,lm,lk.
On exit: Prob Xi = ki , the point probabilities.
12: ivalid[dim] Integer Output
Note: the dimension, dim, of the array ivalid must be at least maxln,ll,lm,lk.
On exit: ivalid[i-1] indicates any errors with the input arguments, with
ivalid[i-1]=0
No error.
ivalid[i-1]=1
On entry, ni<0.
ivalid[i-1]=2
On entry, li<0, or, li>ni.
ivalid[i-1]=3
On entry, mi<0, or, mi>ni.
ivalid[i-1]=4
On entry, ki<0, or, ki>li, or, ki>mi, or, ki<li+mi-ni.
ivalid[i-1]=5
On entry, ni is too large to be represented exactly as a real number.
ivalid[i-1]=6
On entry, the variance (see Section 3) exceeds 106.
13: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
NE_ARRAY_SIZE
On entry, array size=value.
Constraint: lk>0.
On entry, array size=value.
Constraint: ll>0.
On entry, array size=value.
Constraint: lm>0.
On entry, array size=value.
Constraint: ln>0.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
See Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library CL Interface for further information.
NW_IVALID
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.

7 Accuracy

Results are correct to a relative accuracy of at least 10-6 on machines with a precision of 9 or more decimal digits (provided that the results do not underflow to zero).

8 Parallelism and Performance

g01slc is not threaded in any implementation.

9 Further Comments

The time taken by g01slc to calculate each probability depends on the variance (see Section 3) and on ki. For given variance, the time is greatest when kilimi/ni (= the mean), and is then approximately proportional to the square-root of the variance.

10 Example

This example reads a vector of values for n, l, m and k, and prints the corresponding probabilities.

10.1 Program Text

Program Text (g01slce.c)

10.2 Program Data

Program Data (g01slce.d)

10.3 Program Results

Program Results (g01slce.r)