A/B Test Significance Calculator
Check whether your A/B test results are statistically significant using a two-proportion z-test. Enter your control and variant data to find out.
Methodology
This calculator uses the two-proportion z-test, which is the standard frequentist approach for comparing two conversion rates.
The test statistic is:
z = (p2 - p1) / sqrt( p_pool * (1 - p_pool) * (1/n1 + 1/n2) )
Where:
- p1 = control conversions / control visitors
- p2 = variant conversions / variant visitors
- p_pool = total conversions / total visitors (pooled proportion)
- n1 = control visitors
- n2 = variant visitors
The p-value is calculated as 2 * (1 - CDF(|z|)) for a two-tailed test, where CDF is the cumulative distribution function of the standard normal distribution.
Confidence level is simply 1 - p-value, expressed as a percentage.
Observed lift is calculated as ((p2 - p1) / p1) * 100 and represents the relative percentage change in conversion rate.
This test assumes independent observations, sufficiently large sample sizes (np > 5 in each group), and that traffic was randomly assigned between control and variant.