What this calculator does
This A/B test significance calculator tells you whether the difference in conversion rate between your control and one or more variants is statistically significant — that is, whether it is large enough, given your sample size, that random chance is an unlikely explanation. You enter visitors and conversions for each group; it returns the conversion rates, the relative lift, a p-value from a two-proportion z-test, a confidence interval on the lift, and a plain-English verdict you can paste straight into Slack.
Every input is encoded in the URL, so you can share a link to your exact result with your team, and export the result card as a PNG for decks and readouts.
The formula
The calculator runs a two-proportion z-test. With visitors and observed conversion rates for control and variant, the test statistic is:
where are the conversion counts and is the pooled rate under the null hypothesis that both groups convert identically. The two-tailed p-value is , where is the standard normal CDF. The confidence interval on the difference uses the unpooled standard error, and the interval on relative lift uses the delta method.
A worked example
Suppose your control had 10,000 visitors and 1,000 conversions (10.0%), and your variant had 10,000 visitors and 1,120 conversions (11.2%). The pooled rate is 10.6%, giving a standard error of 0.435 percentage points and . The two-tailed p-value is 0.006 — well below 0.05 — so the 12% relative lift is statistically significant at the 95% (and even 99%) confidence level. The 95% confidence interval on the relative lift runs from roughly +3.5% to +20.5%: the true effect is very likely positive, but its size is still uncertain.
When to use it
- After your test has reached its planned sample size (use the sample size calculator before launch).
- For binary metrics: conversion, sign-up, click-through. For revenue or other continuous metrics, use the revenue-per-visitor calculator.
- For 2+ variants: add variants and the calculator applies an omnibus chi-square test plus Holm-corrected pairwise comparisons automatically.
Common mistakes
- Peeking. Checking daily and stopping when p first dips below 0.05 inflates false positives dramatically. Decide the sample size in advance, or use the sequential testing calculator, whose p-values remain valid under continuous monitoring.
- One-tailed tests chosen after the fact. Halving the p-value by switching to one-tailed after seeing a positive result is p-hacking. Default to two-tailed.
- Ignoring sample ratio mismatch (SRM). If your 50/50 test shows a 52/48 split of actual traffic, your assignment may be broken and every p-value in the test suspect. Run the SRM checker first.
- Multiple comparisons without correction. Each extra variant or metric multiplies your chances of a fluke. Use the built-in Holm correction for A/B/n tests.
- Confusing significance with size. With enough traffic, a trivial +0.2% lift can be "significant". Read the confidence interval, not just the verdict.