MTH-161D | Spring 2025 | University of Portland
March 19, 2025
These slides are derived from Diez et al. (2012).
Population vs Sample Proportion
Parameter of interest: \[p \longrightarrow \text{population proportion}\]
Point estimate: \[\hat{p} \longrightarrow \text{sample proportion}\]
Confidence Interval for One Proportion
\[\text{point estimate} \pm z^{\star} \text{SE}\]
Customer Satisfaction at a Coffee Shop
Background: A local coffee shop prides itself on high customer satisfaction. The shop’s management claims that at least 85% of its customers are satisfied with their service. A market research firm is hired to assess this claim by conducting a survey.
Data Collection: The research firm randomly surveys 200 customers who visited Brew Haven in the past month. Among them, 160 reported being satisfied with the service.
Objective: Use hypothesis testing for one proportion to determine whether the claim that at least 85% of customers are satisfied is supported by the survey data.
Let \(p\) represent the true proportion of satisfied customers.
Null Hypothesis \(H_0\): \(p = 0.85\) (The satisfaction rate is equal to 85%.)
Alternative Hypothesis \(H_A\): \(p < 0.85\) (The satisfaction rate is less than 85%.)
Choose Significance Level: A significance level of \(\alpha = 0.05\) is chosen.
\(\star\) This is a one-tailed test because the \(H_A\) is using the \(<\) sign.
The sample proportion is \[\hat{p} = \frac{160}{200} = 0.80.\]
Test statistic formula for one proportion: \[z = \frac{\hat{p} - p_0}{SE_{p}}\]
Substituting values: \[z = \frac{0.80 - 0.85}{\sqrt{\frac{0.85(1-0.85)}{200}}} \approx -1.9803\]
\(\star\) The standard error formula \(SE_{p}\) is the Binomial standard error and here we used the null value.
Determine the probability associated with the computed test statistic.
Using R:
pe <- 0.80 # point estimate
p_0 <- 0.85 # null value
n <- 200 # sample size
SE_p <- sqrt((p_0*(1-p_0))/(n)) # standard error
Z <- (pe-p_0)/SE_p # test statistic
# p-value
pnorm(Z,0,1)
## [1] 0.02383519
\(\star\) The p-value is the probability \(P(Z \le -1.9803) = 0.0238\) using \(Z \sim N(0,1\), the standard normal distribution. Since this is one-tailed test, we only use the left tail probability.
We compare the p-value to our chosen significance level of \(\alpha = 0.05\).
Conclusion:
If \(\text{p-value} < \alpha\), reject the null hypothesis and conclude that the satisfaction rate is significantly less than 85%.
If \(\text{p-value} \ge \alpha\), do not reject the null hypothesis; there is not enough evidence to claim that the satisfaction rate is lower than 85%.
\(\star\) Since \(0.0238 < 0.05\), we reject the null hypothesis (\(H_0\)).
Remember that we defined \(\alpha = 0.05\) arbitrarily before we conducted the hypothesis test.
The significance value \(\alpha\) is related to the confidence level of the confidence interval of the point estimate, which is \(1-\alpha\).
\(\star\) Key Idea: The significance level \(\alpha\) is the probability of rejecting the null hypothesis when it is actually true. In other words, it is the probability of making an error.
If we set a significance level \(\alpha = 0.05\), then the confidence level for the sample proportion is \(1-\alpha = 1 - 0.05 = 0.95\).
That is a 95% confidence interval of the sample proportion \(\hat{p} = 0.80\).
\(\star\) Key Idea: The null value of \(0.85\) is not within the 95% confidence interval. We would reject the null hypothesis at the 5% significance level.
.pdf
file.