What Is Statistical Power and Why Is 80% the Standard?

⏱️ 3 min read 📈 Data Analysis

Statistical power is the probability that your test detects a real effect of a given size. It is 1 - β, where β is the false negative rate. An underpowered test does not just fail to reach significance; it burns weeks of traffic and then produces an inconclusive result you cannot distinguish from "no effect," which is the most expensive outcome an experiment can have.

Quick answer: Power = 1 - β = the chance of getting a significant result when the effect is genuinely there. The 80% convention comes from Jacob Cohen's suggestion that a false negative is roughly four times more tolerable than a false positive (β = 0.20 against α = 0.05). To detect a 5.0% → 5.5% conversion lift at α = 0.05 two-sided and 80% power you need about 31,200 users per arm. Run that same test with 5,000 per arm and your power is only 20%, so you would miss a real effect four times out of five.

What does statistical power actually mean?

Power is the probability that you reject the null hypothesis, given that a specific alternative hypothesis is true. It is always power to detect an effect of a stated size, never a property of the test on its own.

That last point trips people up. "This test has 80% power" is incomplete. The full statement is "this test has 80% power to detect a 10% relative lift on a 5% baseline at α = 0.05." The same test has far less power against a 3% relative lift and far more against a 30% one. Power depends on four inputs, and fixing any three determines the fourth:

How do I calculate sample size for a given power?

For a two-proportion test comparing conversion rates, the per-arm sample size is a direct formula. Plug in your baseline rate, the rate you want to be able to detect, and the z-values for your α and power.

n per arm = (z_(α/2) + z_β)² × [p₁(1-p₁) + p₂(1-p₂)] / (p₁ - p₂)²

  z_(α/2) = 1.960   for α = 0.05, two-sided
  z_β     = 0.842   for 80% power
  z_β     = 1.282   for 90% power

Example: p₁ = 0.050, p₂ = 0.055 (a 10% relative lift)
  (z_(α/2) + z_β)² = (2.8016)²          = 7.84888
  p₁(1-p₁) + p₂(1-p₂) = 0.0475 + 0.051975 = 0.099475
  (p₁ - p₂)²       = (0.005)²           = 0.000025

  n per arm = 7.84888 × 0.099475 / 0.000025 = 31,230.7 → 31,231

Note how brutally the denominator punishes small effects: it is squared. Halving the lift you want to detect multiplies the required sample by four. Our A/B test sample size guide walks through the same arithmetic with a calculator-style checklist.

What happens if my test is underpowered?

You get a coin flip dressed up as an experiment. Below are the power levels for the 5.0% → 5.5% test at various sample sizes, all at α = 0.05 two-sided.

Users per armPower to detect a 10% relative liftChance you miss a real effect
5,00020%80%
10,00035%65%
20,00061%39%
31,23180%20%
50,00094%6%

There is a second, nastier consequence. Among the underpowered tests that do hit significance, the observed effect is systematically inflated, because only unusually large sample estimates cleared the threshold. This is the "winner's curse" of experimentation: the low-powered wins you ship rarely replicate at the size you measured.

Why is 80% power the convention?

It is a convention, not a law. Jacob Cohen proposed β = 0.20 in the 1960s on the reasoning that a false positive is about four times as costly as a false negative in academic publishing, giving the 4:1 ratio of β = 0.20 to α = 0.05.

Whether that ratio fits your situation is a business question, not a statistical one:

Going from 80% to 90% power on the example above raises the requirement from 31,231 to 41,809 per arm, roughly 34% more traffic. That is the actual price of the extra certainty.

What if I do not have enough traffic?

Increase the effect size you are willing to test for, reduce the variance of the metric, or stop running that test. Those are the honest options; padding the runtime after seeing the data is not one of them.

Common mistakes with power

Pro Tip: Write the required sample size and the planned end date into the test document before the test starts, then do not look at results until you hit it. The single most effective power discipline is not a better calculator, it is committing to the stopping rule in advance so you cannot be talked into calling a 40%-power test at day three.

← Back to Data Analysis Tips