| » | Exact binomial probabilities| » | Approximation via the normal distribution | » | Approximation via the Poisson Distribution | |
|
The logic and computational details of binomial probabilities are described in Chapters 5 and 6 of Concepts and Applications. |
| n = 100 | [the number of opportunities for a head to occur]
| k = 60
| [the stipulated number of heads]
| p = .5
| [the probability that a head will occur on any particular toss]
| q = .5
| [the probability that a head will not occur on any particular toss]
| |
Method 1: If n1000, exact binomial probabilities will be calculated through repeated applications of the standard binomial formulaQ
P(k out of n) =
n!
k!(n-k)!
(pk)(qn-k)
In principle,Method 1 is preferable in all cases, since it involves direct calculation of exact binomial probabilities. Its limitation is that it is not computationally feasible with very large samples. The programming on this page is capable of performing the calculation up throughn=1000.
Method 2: Ifnp and5
nq , binomial probabilities will be estimated by way of the binomial approximation of the normal distribution, according to the formulaQ5
where:
z =
(k )±.5
-
- = np
[the mean of the binomial sampling distribution] - = sqrt[npq]
[the standard deviation of the binomial sampling distribution]
Method 3: Ifn≥150 and themean (np) andvariance (npq) of the binomial sampling distribution are within 10% of each other, binomial probabilities will be estimated through repeated applications of the Poisson probability function
where e = the base of the natural logarithms.
TP(k out of n) =
(e-np)(npk)
k!
The defining characteristic of a Poisson distribution is that its mean and variance are identical. In a binomial sampling distribution, this condition is approximated as p becomes very small, providingthat n is relatively large. The programming on this page permits the Poisson procedure to be performed whenever np and npq are within 10% of each other, providing thatn≥150 .Do keep in mind, however, that the results of the Poisson procedure are only approximations of the true binomial probabilities, valid only in the degree that the binomial mean and variance are very close.
| n | k | p | q
|
| Parameters |
| variance | standard deviation | binomial z-ratio | (if applicable) | | |||||||
| Method 1. exact binomial calculation | Method 2. approximation via normal | Method 3. approximation via Poisson | Method 1. exact binomial calculation | Method 2. approximation via normal | Method 3. approximation via Poisson | Method 1. exact binomial calculation | Method 2. approximation via normal | Method 3. approximation via Poisson | | ||||||||||||||
| For hypothesis testing | | One-Tail | Two-Tail | Method 1. exact binomial calculation | Method 2. approximation via normal | Method 3. approximation via Poisson | | |||||||
| Home | Click this link only if you did not arrive here via the VassarStats main page. |