A result is statistically significant when it is unlikely enough under the assumption of no effect that you stop believing that assumption. In practice it means the p-value fell below a threshold you fixed in advance, usually 0.05. It is a verdict about evidence, not about importance.
Statistical significance is a decision rule, and it helps to see it as one. Before an experiment you pick a threshold — the significance level, conventionally 0.05 — which is the false-alarm rate you are willing to live with. You run the test, compute a p-value, and if it falls below the threshold you call the result significant and act as though the effect is real. That is the whole mechanism. Everything else attached to the phrase is interpretation people have layered on top.
The rule exists to stop a specific failure: eyeballing a difference and believing it. Random variation produces differences constantly, and human beings are extremely good at seeing patterns in them. A pre-registered threshold takes the judgement out of the moment where you are most motivated to reach a particular conclusion. That is a genuine achievement, and it is why the convention has survived a century of criticism it largely deserves.
What the rule cannot do is tell you whether the effect matters. Significance is a function of the effect and the sample size together, so it can be reached by a large effect on a small sample or a trivial effect on an enormous one. At ten million users per arm, a 0.02% lift — worth nothing to anybody — is significant at p < 0.001. This is why the word does so much damage in a business setting: it sounds like it means "important", and in ordinary English it does.
The failure runs in the other direction too. "Not significant" gets read as "no difference", when it usually means the experiment lacked the statistical power to resolve the question. A test that could only have detected a 20% lift, reporting p = 0.28, has told you almost nothing about whether a 6% lift exists. Reporting that as a negative result and killing the feature is a decision made on the absence of evidence rather than evidence of absence.
The practical fix is to stop treating significance as the headline. Report the confidence interval and read it against the smallest effect you would act on. The interval carries the significance verdict for free — it excludes zero exactly when p < 0.05 — and adds the one thing the verdict throws away, which is how big the effect might be. Our full argument for making that the house standard is in how to properly report A/B testing results.
The formula
There is no formula for significance itself — it is a comparison. What varies is which quantity you compare and against what, and the three formulations below are equivalent.
The decision rule
significant ⟺ p < α
α is fixed before the data exist. Choosing it afterwards, or moving it once you have seen p, converts a 5% error rate into an unknown one.
Equivalently, in test statistics
significant ⟺ |t_observed| > t₁₋α/₂
At α = 0.05 two-sided and a large sample, the critical value is 1.96. This is the form a results table usually shows.
Equivalently, in intervals
significant ⟺ 0 ∉ (1 − α) confidence interval
The same arithmetic a third way. The interval is the version worth reporting, because it also says how large the effect might be — see the two-sample t-test calculator.
Worked example
Two experiments finish the same week. Test A ran on 800 users per arm and moved conversion from 12.0% to 14.4% — a 20% relative lift — with p = 0.14. Test B ran on 900,000 users per arm and moved conversion from 3.000% to 3.036%, a 1.2% relative lift, with p = 0.002.
Test A lift
+20% relative, p = 0.14
Test A 95% CI
−0.8 to +5.6 percentage points
Test B lift
+1.2% relative, p = 0.002
Test B 95% CI
+0.013 to +0.059 percentage points
Ship threshold
+5% relative
Test B is significant and Test A is not. Test A is the one worth pursuing; Test B is worth nothing.
Test B has measured a real effect with great precision, and that effect is about a thirtieth of what anyone would fund. Shipping it is fine; celebrating it is a misreading, and building a roadmap around results like it is how a team spends a year being statistically rigorous about nothing. Test A found a lift three times larger than the ship threshold and could not prove it, because 800 users per arm cannot resolve a 20% effect on a 12% baseline. Its interval still contains a 5.6 point gain. The correct action is to rerun Test A with enough traffic, and the correct summary of Test B is "real, and immaterial" — a sentence the word significant actively prevents people from writing.
Common misconceptions
דA significant result is an important result.”
Significance measures how confidently you have detected an effect, not how large it is. With a big enough sample, an effect too small to matter is detected with near-certainty. Read the confidence interval against the smallest effect worth shipping — that comparison, not the p-value, is what makes a result important.
דThe result is 95% likely to be true because it was significant at the 5% level.”
The 5% is the rate of false alarms among experiments where nothing is happening, not the chance this particular result is wrong. How often a significant finding is real also depends on how many of the ideas you test actually work. When most do not, a substantial share of significant results are still false positives.
דA non-significant result proves the two variants are equivalent.”
It proves you failed to distinguish them, which is a different claim and often just says the test was too small. Establishing that two things are genuinely close requires an equivalence test against a margin you state in advance — an ordinary test can never deliver that conclusion, however large its p-value.
Frequently asked questions
Why is 0.05 the significance threshold?
Convention, and a fairly arbitrary one. Fisher suggested it in 1925 as a convenient rule of thumb and said explicitly that no fixed level should be used in all cases. It has survived because a shared default makes results comparable across teams, not because there is anything special about one-in-twenty. Fields where a false positive is expensive use far stricter levels.
My result is significant but tiny. Should I ship it?
That is a business question and the statistics have already done their part. The test has told you the effect is probably real; whether it is worth the engineering cost, the added complexity and the ongoing maintenance is a judgement about value. The useful discipline is to decide the smallest worthwhile effect before the test runs, so this conversation happens without a result on the table pulling at it.
What is the difference between statistical and practical significance?
Statistical significance says the effect is distinguishable from zero. Practical significance says the effect is large enough to change a decision. They are independent: you can have either without the other. A well-run experiment defines the practical threshold first and then powers the test to detect it, which makes the two align rather than compete.
The p-value is 0.06. Can I call it a trend?
You can describe what you found — the estimate and its interval — but calling 0.06 a trend towards significance is a well-documented way of having it both ways, and the difference between 0.049 and 0.06 is inside the noise of a rerun. The honest framing is that the experiment did not resolve the question, followed by what the interval still allows.
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.