The routine may be called by the names g07aaf or nagf_univar_ci_binomial.
3Description
Given the number of trials, , and the number of successes, , this routine computes a confidence interval for , the probability parameter of a binomial distribution with probability function,
where is in the interval .
Let the confidence interval be denoted by [].
The point estimate for is .
The lower and upper confidence limits and are estimated by the solutions to the equations;
Three different methods are used depending on the number of trials, , and the number of successes, .
1.If .
The relationship between the beta and binomial distributions (see page 38 of Hastings and Peacock (1975)) is used to derive the equivalent equations,
where is the deviate associated with the lower tail probability, , of the beta distribution with parameters and . These beta deviates are computed using g01fef.
2.If and .
The binomial variate with parameters and is approximated by a Poisson variate with mean , see page 38 of Hastings and Peacock (1975).
The relationship between the Poisson and -distributions (see page 112 of Hastings and Peacock (1975)) is used to derive the following equations;
where is the deviate associated with the lower tail probability, , of the -distribution with degrees of freedom.
In turn the relationship between the -distribution and the gamma distribution (see page 70 of Hastings and Peacock (1975)) yields the following equivalent equations;
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.If and .
The binomial variate with parameters and is approximated by a Normal variate with mean and variance , see page 38 of Hastings and Peacock (1975).
The approximate lower and upper confidence limits and are the solutions to the equations;
where is the deviate associated with the lower tail probability, , of the standard Normal distribution. These equations are solved using a quadratic equation solver
(c02ajf).
4References
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
5Arguments
1: – IntegerInput
On entry: , the number of trials.
Constraint:
.
2: – IntegerInput
On entry: , the number of successes.
Constraint:
.
3: – Real (Kind=nag_wp)Input
On entry: the confidence level, , for two-sided interval estimate. For example will give a confidence interval.
Constraint:
.
4: – Real (Kind=nag_wp)Output
On exit: the lower limit, , of the confidence interval.
5: – Real (Kind=nag_wp)Output
On exit: the upper limit, , of the confidence interval.
6: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or 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).
6Error 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, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, and .
Constraint: .
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.
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.
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.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
For most cases using the beta deviates the results should have a relative accuracy of where is the machine precision (see x02ajf). Thus on machines with sufficiently high precision the results should be accurate to significant figures. Some accuracy may be lost when or is very close to , which will occur if clevel is very close to . This should not affect the usual confidence levels used.
The approximations used when is large are accurate to at least significant digits but usually to more.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
g07aaf is not threaded in any implementation.
9Further Comments
None.
10Example
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.