Bell Statistics

What is the significance level (alpha)?

The significance level, alpha, is the false-positive rate you agree to accept before running a test. Set it to 0.05 and, across many experiments where nothing is happening, five per cent will still report a significant result. It is a budget for being wrong.

Notation
α
Also called
alpha, alpha level, false positive rate
Allon Korem

Written by Allon Korem

Chief Executive Officer

Last updated

In plain English

Alpha is a price you agree to pay. Before the experiment you decide how often you are willing to be fooled by noise — 5% is the convention — and everything else follows from that number. The critical value the test statistic must clear, the width of the confidence interval, and the sample size you need are all derived from it. It is the one parameter in the whole procedure that is a pure judgement call, and it is the one people think about least.

The word "before" is load-bearing. Alpha only controls the false-positive rate if it is fixed independently of the data. Choosing 0.05, seeing p = 0.07 and deciding that 0.10 was defensible all along does not give you a 10% error rate — it gives you an unknown one, because the threshold has become a function of the result. The same is true of switching to a one-tailed test after seeing which way the difference went, which halves the effective threshold in the favourable direction.

The budget is also spent by things that do not look like threshold changes. Testing five metrics at 5% each gives roughly a 23% chance of at least one false positive; that is the multiple comparisons problem, and the fix is to divide the budget rather than pretend each test is the only one. Checking the result daily and stopping at the first significant reading does the same thing across time — a fortnight of daily peeks turns a 5% rate into about 25%. Slicing a flat result by country, device and cohort until something appears is the same arithmetic wearing a different hat.

Raising alpha buys statistical power at the cost of reliability, and lowering it does the reverse. That is a real trade rather than a free lunch, and it should be made against the asymmetry of the decision in front of you. A cheap, reversible change where a false positive costs an afternoon can justify 0.10. A pricing change, a migration, anything you will not revisit for two years — those deserve 0.01, and the extra sample they need is cheaper than the alternative.

One symmetry is worth holding onto: alpha and beta are the same kind of object. Alpha is the rate of claiming an effect that is not there, a type I error; beta is the rate of missing one that is, a type II error. The conventional 5% and 20% encode a specific and rarely examined belief — that a false positive is four times worse than a false negative. In a mature product where most ideas do nothing, that is probably right. In an early-stage one where the cost is a missed opportunity, it may be exactly backwards.

The formula

Alpha appears in three places, and seeing it in all three is what makes the trade-offs concrete: it sets the critical value, the interval width, and the sample size.

Definition
α = P( reject H₀ | H₀ true )

The probability of a false alarm, conditional on there being nothing to find. A long-run rate over many experiments, not a property of any single one.

Critical value, two-sided
z₁₋α/₂ = 1.645 (α = 0.10), 1.960 (0.05), 2.576 (0.01)

The α/2 is the two-sided split: half the budget is spent in each tail, which is what lets the test detect harm as well as benefit.

Family-wise error over m tests
FWER = 1 − (1 − α)^m

5 tests at α = 0.05 gives 0.23; 20 gives 0.64. The arithmetic behind nominating one primary metric before the test starts.

Cost in sample size
n ∝ ( z₁₋α/₂ + z₁₋β )²

Tightening α from 0.05 to 0.01 raises the required sample by about 49% at 80% power — see the A/B test sample size calculator.

Worked example

A team runs experiments continuously and reports every significant result to the leadership meeting. They test one primary metric per experiment at alpha = 0.05, but they also check the dashboard each morning of the fourteen-day run and stop early when the result turns green.

Nominal alpha
0.05
Tests per quarter
20
Interim looks per test
14 (daily)
Effective alpha with daily peeking
≈ 0.25
Expected false positives per quarter
≈ 5 of 20

The stated error budget is one false positive in twenty tests. The realised rate is closer to one in four.

Nobody in this team changed alpha. They set it to 0.05, wrote it down, and never touched it — and still ran at roughly five times their stated error rate, because the budget is spent by looking, not only by deciding. Around five of their twenty quarterly wins are noise, and since early stopping selects for results that noise happened to inflate, the surviving effect sizes are overstated as well. Two fixes work: fix the sample size in advance and look once, or adopt [sequential testing](/glossary/sequential-testing) with spending boundaries, which is designed to permit continuous monitoring and charges the budget honestly as it goes.

Common misconceptions

Alpha of 0.05 means there is a 5% chance my significant result is wrong.
Alpha is the false-positive rate among tests where the null is true, not the share of your significant findings that are false. The latter also depends on how many of the ideas you test actually work. If one idea in ten does anything, a good fraction of your significant results are still false positives even at alpha = 0.05.
We kept alpha at 0.05, so our error rate is 5%.
Only if you tested once, on one metric, at one moment. Repeated looks, multiple metrics and post-hoc segment slicing all spend the same budget without anyone editing the number. Count the number of chances the data had to produce a significant result — that, not the value written in the spec, determines the real rate.
Lowering alpha to 0.01 makes the experiment more rigorous at no cost.
It buys fewer false positives with more false negatives. At a fixed sample size, tightening alpha directly lowers statistical power, so a real effect is more likely to be missed. If you want the rigour without the loss, the sample has to grow by roughly half.

Frequently asked questions

How should I choose alpha for my experiment?
Work from the asymmetry of the decision. If shipping something useless is cheap and reversible, 0.10 is defensible and buys sensitivity. If the change is expensive, hard to undo, or will be cited for years, 0.01 is the better choice and costs about 49% more sample at the same power. Whatever you pick, write it down before the data exist, because an alpha chosen afterwards controls nothing.
How are alpha and beta related?
They are the two ways a test can be wrong, and at a fixed sample size they trade against each other directly: any change that makes false alarms rarer makes missed effects more common. The only way to reduce both at once is to get more information, either by collecting more data or by reducing the variance of the metric. The conventional 5% and 20% imply a false positive is four times as costly as a false negative.
Do I need to adjust alpha if I look at several metrics?
If you are prepared to declare a win on whichever of them turns out significant, yes. Five metrics at 5% each gives roughly a 23% chance of at least one false positive. The cleanest alternative is to nominate one primary metric in advance and treat the rest as diagnostics that inform but never decide, which keeps the budget intact without a correction.

Related terms

  • Multiple comparisons

    Test enough things and something will look significant — the arithmetic, and the four fixes.

  • P-value

    How surprising your data would be if there were no effect — and the four things it is constantly mistaken for.

  • Sequential testing

    How to look at a running test without breaking it — and what peeking costs when you do not.

  • Statistical power

    The probability your test finds a real effect — and why most tests that report nothing were never able to.

  • Statistical significance

    A verdict about evidence, not about importance — and the difference is where most bad decisions live.

  • Type I error

    The false positive — and the one whose cost lands months later, on a roadmap built around noise.

Calculate it

  • A/B test sample size

    Size a two-proportion experiment before you launch, then read the lift and its interval once it lands.

  • Two-sample t-test

    Compare the average of two independent groups — plan the sample size, then test the result.

  • Chi-square test

    Test a contingency table of counts for association — any number of rows and columns.

Knowing the term is the easy part

Applying it to a live measurement problem is the part that goes wrong. If you are designing an experiment, reading a result you do not trust, or trying to work out what your marketing actually caused, that is the work we do.

References