Here is a complete guide to Tests of Significance:
Tests of Significance
Definition
A test of significance is a statistical method used to determine whether the difference between observed sample results and what is expected under the null hypothesis is large enough to be attributed to something other than chance. It helps researchers decide if their findings are statistically meaningful or merely due to random variation.
Key Concepts
1. Null Hypothesis (H₀)
- The default assumption - states there is no effect, no difference, or no relationship.
- Example: "There is no difference in mean blood pressure between the drug group and placebo group."
2. Alternative Hypothesis (H₁ or Hₐ)
- What you want to prove - states there is an effect or difference.
- Can be one-tailed (directional) or two-tailed (non-directional).
3. Level of Significance (α)
- The threshold probability for rejecting H₀.
- Common values:
| α | Confidence Level | Use |
|---|
| 0.05 | 95% | Most common in research |
| 0.01 | 99% | Stricter standard |
| 0.10 | 90% | Exploratory studies |
4. p-value
- The probability of obtaining results as extreme as or more extreme than observed, assuming H₀ is true.
- If p ≤ α → Result is statistically significant → Reject H₀
- If p > α → Result is not significant → Fail to reject H₀
5. Test Statistic
- A calculated value from sample data (e.g., z, t, F, χ²) used to determine the p-value.
- Each test has its own formula and sampling distribution.
6. Critical Value
- The boundary value from the relevant statistical table beyond which H₀ is rejected.
- If test statistic > critical value → Reject H₀
General Steps in a Test of Significance
Step 1: State H₀ and H₁
Step 2: Choose significance level (α)
Step 3: Select the appropriate test
Step 4: Check assumptions
Step 5: Compute the test statistic
Step 6: Find p-value or compare to critical value
Step 7: Make a decision (Reject or Fail to Reject H₀)
Step 8: State conclusion in context
Types of Tests of Significance
Tests are classified based on data type, number of groups, and distribution assumptions.
A. Parametric Tests
(Assume data follows a normal distribution; used for continuous data)
| Test | Use Case | Formula/Statistic |
|---|
| z-test | Large samples (n ≥ 30), known population σ | z = (x̄ - μ) / (σ/√n) |
| One-sample t-test | Small sample, unknown σ, test mean vs. known value | t = (x̄ - μ) / (s/√n) |
| Independent t-test | Compare means of two independent groups | t = (x̄₁ - x̄₂) / SE |
| Paired t-test | Compare means of same group at two time points | t = d̄ / (s_d/√n) |
| One-way ANOVA | Compare means of 3+ independent groups | F = Variance between / Variance within |
| Two-way ANOVA | Two factors simultaneously | F-statistic |
| Pearson's correlation | Linear relationship between two continuous variables | r statistic |
B. Non-Parametric Tests
(No distribution assumption; used for ordinal, nominal, or non-normal data)
| Test | Parametric Equivalent | Use Case |
|---|
| Chi-square (χ²) | - | Categorical data (frequencies) |
| Mann-Whitney U | Independent t-test | Two independent non-normal groups |
| Wilcoxon signed-rank | Paired t-test | Paired non-normal data |
| Kruskal-Wallis | One-way ANOVA | 3+ independent non-normal groups |
| Spearman's rank | Pearson correlation | Ordinal or non-normal continuous data |
| Fisher's Exact | Chi-square | Small sample 2×2 tables |
Types of Errors
| H₀ is True | H₀ is False |
|---|
| Reject H₀ | Type I Error (α) | Correct (Power = 1-β) |
| Fail to Reject H₀ | Correct (1-α) | Type II Error (β) |
- Type I Error (False Positive): Rejecting a true H₀. Controlled by α.
- Type II Error (False Negative): Failing to reject a false H₀. Controlled by β.
- Power (1-β): Probability of correctly detecting a true effect. Ideally ≥ 0.80.
One-Tailed vs. Two-Tailed Tests
| Feature | One-Tailed | Two-Tailed |
|---|
| Hypothesis direction | Specific (greater or less than) | Non-directional (not equal) |
| Critical region | One side of distribution | Both sides |
| More sensitive | Yes (for specific direction) | No |
| Use when | Prior evidence suggests direction | No prior expectation |
Choosing the Right Test
Is your outcome variable continuous or categorical?
│
├── Continuous
│ ├── Is data normally distributed?
│ │ ├── Yes (Parametric)
│ │ │ ├── 1 group vs. known value → One-sample t-test / z-test
│ │ │ ├── 2 independent groups → Independent t-test
│ │ │ ├── 2 paired groups → Paired t-test
│ │ │ └── 3+ groups → ANOVA
│ │ └── No (Non-parametric)
│ │ ├── 2 independent groups → Mann-Whitney U
│ │ ├── 2 paired groups → Wilcoxon signed-rank
│ │ └── 3+ groups → Kruskal-Wallis
│
└── Categorical
├── Large sample → Chi-square test
└── Small sample (2×2) → Fisher's Exact Test
Worked Example: z-test
Problem: A sample of 50 students has a mean score of 78. The population mean is known to be 75, with σ = 10. Is this difference significant at α = 0.05?
Step 1: H₀: μ = 75 | H₁: μ ≠ 75 (two-tailed)
Step 2: α = 0.05 → Critical z = ±1.96
Step 3:
z = (x̄ - μ) / (σ/√n) = (78 - 75) / (10/√50) = 3 / 1.414 = 2.12
Step 4: |2.12| > 1.96 → Reject H₀
Conclusion: The sample mean is significantly different from the population mean at the 5% level (z = 2.12, p < 0.05).
Statistical Significance vs. Practical Significance
A result can be statistically significant yet practically meaningless, especially with large samples. Always pair significance tests with:
- Effect size (Cohen's d, r, η², Cramer's V)
- Confidence intervals
- Clinical/practical context
Example: A drug lowers blood pressure by 1 mmHg with p = 0.001. Statistically significant - but clinically irrelevant.
Summary Table
| Concept | Meaning |
|---|
| H₀ | Null hypothesis (no effect) |
| H₁ | Alternative hypothesis (effect exists) |
| α | Significance level (typically 0.05) |
| p-value | Probability of result under H₀ |
| Test statistic | z, t, F, χ² - computed from data |
| Type I Error | Falsely rejecting H₀ |
| Type II Error | Failing to detect a real effect |
| Power | Ability to detect a true effect |