Statistical Power

1 min read

Statistical power is the probability that a test correctly detects a real effect.

Power=P(reject H0H1 is true)\text{Power} = P(\text{reject } H_0 \mid H_1 \text{ is true})

Errors in hypothesis testing:

DecisionRealityName
Reject H0H_0H0H_0 trueType I error / false positive
Fail to reject H0H_0H1H_1 trueType II error / false negative

The Type I error rate is controlled by α\alpha:

P(Type I error)=αP(\text{Type I error}) = \alpha

The Type II error rate is β\beta, so:

Power=1β\text{Power} = 1 - \beta

Power increases when:

  • Sample size increases
  • Effect size increases
  • Measurement noise decreases
  • Significance threshold α\alpha becomes less strict

Low power is dangerous: a non-significant result may mean "not enough data," not "no effect."

In ML: small benchmark differences often require large test sets to detect reliably. If the test set is small, "model A beats model B by 0.3%" may be noise.

See also: Hypothesis Testing, Sampling Distributions, Evaluation Metrics

Linked from