Because we are sampling without replacement from a finite population, technically the Binomial distribution is not the best model of the sampling process. Intead, we should use the hypergeometric distribution.
According to the 2008 U.S. Census, there were 21,469,780 teens in America between the ages of 15 and 19.
Let X represent the number of successes in a random sample of 1771 teens from a population with .20(21469780) = 4293956 successes.
Use JMP or R to find P(X ≤ 333)
- JMP: Open the Journal file and select Distribution Calculator. Use the Distribution pull-down menu to select Hypergeometric. Enter this population size, number of successes in the population ("Number of Items") and sample size. Find P(X≤ 333).
- R: iscamhyperprob(333, total = 21469780, succ = 4293956 , n = 1771, lower.tail = TRUE )