NAG FL Interface
g07aaf (ci_​binomial)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g07aaf computes a confidence interval for the parameter p (the probability of a success) of a binomial distribution.

2 Specification

Fortran Interface
Subroutine g07aaf ( n, k, clevel, pl, pu, ifail)
Integer, Intent (In) :: n, k
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: clevel
Real (Kind=nag_wp), Intent (Out) :: pl, pu
C Header Interface
#include <nag.h>
void  g07aaf_ (const Integer *n, const Integer *k, const double *clevel, double *pl, double *pu, Integer *ifail)
The routine may be called by the names g07aaf or nagf_univar_ci_binomial.

3 Description

Given the number of trials, n, and the number of successes, k, this routine computes a 100(1-α)% confidence interval for p, the probability parameter of a binomial distribution with probability function,
f(x)=( n x ) px(1-p)n-x,  x=0,1,,n,  
where α is in the interval (0,1).
Let the confidence interval be denoted by [pl,pu].
The point estimate for p is p^=k/n.
The lower and upper confidence limits pl and pu are estimated by the solutions to the equations;
x=kn ( n x ) plx (1-pl) n-x =α/2 ,  
x= 0k ( n x ) pux (1-pu) n-x =α /2 .  
Three different methods are used depending on the number of trials, n, and the number of successes, k.
  1. 1.If max(k,n-k)<106.
    The relationship between the beta and binomial distributions (see page 38 of Hastings and Peacock (1975)) is used to derive the equivalent equations,
    pl = βk,n-k+1,α/2, pu = βk+1,n-k,1-α/2,  
    where βa,b,δ is the deviate associated with the lower tail probability, δ, of the beta distribution with parameters a and b. These beta deviates are computed using g01fef.
  2. 2.If max(k,n-k)106 and min(k,n-k) 1000 .
    The binomial variate with parameters n and p is approximated by a Poisson variate with mean np, see page 38 of Hastings and Peacock (1975).
    The relationship between the Poisson and χ2-distributions (see page 112 of Hastings and Peacock (1975)) is used to derive the following equations;
    pl = 12n χ2k,α/22, pu = 12n χ2k+2,1-α/22,  
    where χδ,ν2 is the deviate associated with the lower tail probability, δ, of the χ2-distribution with ν degrees of freedom.
    In turn the relationship between the χ2-distribution and the gamma distribution (see page 70 of Hastings and Peacock (1975)) yields the following equivalent equations;
    pl = 12n γk,2;α/2, pu = 12n γk+1,2;1-α/2,  
    where γα,β;δ is the deviate associated with the lower tail probability, δ, of the gamma distribution with shape parameter α and scale parameter β. These deviates are computed using g01fff.
  3. 3.If max(k,n-k)>106 and min(k,n-k) > 1000 .
    The binomial variate with parameters n and p is approximated by a Normal variate with mean np and variance np(1-p), see page 38 of Hastings and Peacock (1975).
    The approximate lower and upper confidence limits pl and pu are the solutions to the equations;
    k-npl npl(1-pl) = z1-α/2, k-npu npu(1-pu) = zα/2,  
    where zδ is the deviate associated with the lower tail probability, δ, of the standard Normal distribution. These equations are solved using a quadratic equation solver (c02ajf).

4 References

Hastings N A J and Peacock J B (1975) Statistical Distributions Butterworth
Snedecor G W and Cochran W G (1967) Statistical Methods Iowa State University Press

5 Arguments

1: n Integer Input
On entry: n, the number of trials.
Constraint: n1.
2: k Integer Input
On entry: k, the number of successes.
Constraint: 0kn.
3: clevel Real (Kind=nag_wp) Input
On entry: the confidence level, (1-α), for two-sided interval estimate. For example clevel=0.95 will give a 95% confidence interval.
Constraint: 0.0<clevel<1.0.
4: pl Real (Kind=nag_wp) Output
On exit: the lower limit, pl, of the confidence interval.
5: pu Real (Kind=nag_wp) Output
On exit: the upper limit, pu, of the confidence interval.
6: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, clevel=value.
Constraint: 0.0<clevel<1.0.
On entry, k=value.
Constraint: k0.
On entry, n=value.
Constraint: n1.
On entry, n=value and k=value.
Constraint: nk.
ifail=2
When using the relationship with the gamma distribution the series to calculate the gamma probabilities has failed to converge. Both pl and pu are set to zero. This is an unlikely error exit.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

For most cases using the beta deviates the results should have a relative accuracy of max(0.5E−12,50.0×ε) where ε is the machine precision (see x02ajf). Thus on machines with sufficiently high precision the results should be accurate to 12 significant figures. Some accuracy may be lost when α/2 or 1-α/2 is very close to 0.0, which will occur if clevel is very close to 1.0. This should not affect the usual confidence levels used.
The approximations used when n is large are accurate to at least 3 significant digits but usually to more.

8 Parallelism and Performance

g07aaf is not threaded in any implementation.

9 Further Comments

None.

10 Example

The following example program reads in the number of deaths recorded among male recipients of war pensions in a six year period following an initial questionnaire in 1956. We consider two classes, non-smokers and those who reported that they smoked pipes only. The total number of males in each class is also read in. The data is taken from page 216 of Snedecor and Cochran (1967). An estimate of the probability of a death in the six year period in each class is computed together with 95% confidence intervals for these estimates.

10.1 Program Text

Program Text (g07aafe.f90)

10.2 Program Data

Program Data (g07aafe.d)

10.3 Program Results

Program Results (g07aafe.r)