7-3. Large Sample Estimation of a Population Proportion
Since from Section 6.3 "The Sample Proportion" in Chapter 6 "Sampling Distributions" we know the mean, standard deviation, and sampling distribution of the sample proportion , the ideas of the previous two sections can be applied to produce a confidence interval for a population proportion. Here is the formula.
Large Sample Confidence Interval for a Population Proportion
A sample is large if the interval lies wholly within the interval .
In actual practice the value of is not known, hence neither is . In that case we substitute the known quantity for in making the check; this means checking that the interval
lies wholly within the interval .
EXAMPLE 7. To estimate the proportion of students at a large college who are female, a random sample of 120 students is selected. There are 69 female students in the sample. Construct a 90% confidence interval for the proportion of all students at the college who are female.
[ Solution ]
The proportion of students in the sample who are female is .
Confidence level 90% means that , so . From the last line of Figure 12.3 "Critical Values of " we obtain .
Thus .
One may be 90% confident that the true proportion of all students at the college who are female is contained in the interval .
n <- 120 # number of samples
p <- 69/120 # sample proportion
alpha <- 0.10 #
se <- sqrt(p*(1-p)/n) # std of sample proportion
z <- qnorm(1-alpha/2); z
ll <- p - z * se
ul <- p + z * se
ll # lower limit
ul # upper limit
Using Rstat Package :
prob.ci()
library(Rstat)
prob.ci(n=120, x=69, alp=0.10, dig=3)
Last updated
Was this helpful?