Hypothesis Testing Formula
The Formula
When to use: Think of a courtroom trial: the null hypothesis (H_0) is 'innocent until proven guilty.' You look at the evidence (data) and ask: 'Is this evidence so strong that it would be very unlikely if the defendant were truly innocent?' If yes, you reject the null hypothesis. If not, you don't have enough evidence to convict—but that doesn't prove innocence.
Quick Example
Notation
What This Formula Means
A systematic method to decide whether sample data provides enough evidence to reject a claim (null hypothesis) about a population parameter.
Think of a courtroom trial: the null hypothesis (H_0) is 'innocent until proven guilty.' You look at the evidence (data) and ask: 'Is this evidence so strong that it would be very unlikely if the defendant were truly innocent?' If yes, you reject the null hypothesis. If not, you don't have enough evidence to convict—but that doesn't prove innocence.
Formal View
Worked Examples
Example 1
mediumSolution
- 1 Calculate test statistic: z = \frac{\bar{x} - \mu_0}{\sigma/\sqrt{n}} = \frac{78 - 75}{12/\sqrt{36}} = \frac{3}{2} = 1.5
- 2 Find p-value (one-tailed): P(Z > 1.5) = 1 - 0.9332 = 0.0668
- 3 Compare to \alpha = 0.05: p = 0.0668 > 0.05
- 4 Decision: Fail to reject H_0. Conclusion: insufficient evidence that the true mean exceeds 75.
Answer
Example 2
hardCommon Mistakes
- Saying 'accept H_0' instead of 'fail to reject H_0'—we never prove the null hypothesis, we only fail to find evidence against it.
- Choosing \alpha after seeing the data (p-hacking)—the significance level must be set before collecting data.
- Confusing statistical significance with practical significance—a statistically significant result may be too small to matter in practice.
Why This Formula Matters
Hypothesis testing is how science decides if results are 'real.' Drug trials, A/B tests, quality control, and research studies all rely on it to distinguish genuine effects from random noise.
Frequently Asked Questions
What is the Hypothesis Testing formula?
A systematic method to decide whether sample data provides enough evidence to reject a claim (null hypothesis) about a population parameter.
How do you use the Hypothesis Testing formula?
Think of a courtroom trial: the null hypothesis (H_0) is 'innocent until proven guilty.' You look at the evidence (data) and ask: 'Is this evidence so strong that it would be very unlikely if the defendant were truly innocent?' If yes, you reject the null hypothesis. If not, you don't have enough evidence to convict—but that doesn't prove innocence.
What do the symbols mean in the Hypothesis Testing formula?
H_0: null hypothesis (the default claim). H_a: alternative hypothesis (what we suspect). \alpha: significance level (typically 0.05).
Why is the Hypothesis Testing formula important in Math?
Hypothesis testing is how science decides if results are 'real.' Drug trials, A/B tests, quality control, and research studies all rely on it to distinguish genuine effects from random noise.
What do students get wrong about Hypothesis Testing?
'Fail to reject H_0' does NOT mean 'H_0 is true'—it means there's not enough evidence against it. Absence of evidence is not evidence of absence.
What should I learn before the Hypothesis Testing formula?
Before studying the Hypothesis Testing formula, you should understand: sampling distribution, normal distribution, probability.