A/B Test Significance Calculator
Compare conversion rates across variants. Pick a baseline (usually Control A), and we’ll compute p-value, confidence interval, lift, and a significance call for each variant vs the baseline using a two-proportion z-test. Supports A/B/n (multiple variants) — each variant is compared to your chosen baseline.
Background
Each comparison is a standard two-proportion z-test (baseline vs one variant). For true A/B/n experiments, repeated comparisons can inflate false positives (multiple testing). This tool is ideal for fast checks and clear reporting.
How to use this calculator
- Enter visitors + conversions for each variant.
- Choose a baseline, your α and hypothesis.
- Click Calculate to see results for every variant vs the baseline.
Formula & Equation Used
Rates: p = x / n
Pooled rate: p̂ = (x0 + x1) / (n0 + n1)
SE (pooled): SE = √(p̂(1−p̂)(1/n0 + 1/n1))
z-stat: z = (p1 − p0) / SE
CI for Δ: Δ ± z* · √(p0(1−p0)/n0 + p1(1−p1)/n1)