A/B Testing Statistical Significance Engine
Evaluate split-test conversion results with mathematical certainty. Compute two-tailed Z-scores, exact p-values, 90%/95%/99% confidence intervals, and minimum required sample sizes.
A/B Testing Statistical Significance evaluates whether the conversion difference between Control (A) and Treatment (B) is mathematically real or random variance. Using a two-tailed pooled Z-test, pooled proportion is p_pool = (Conversions_A + Conversions_B) / (N_A + N_B). The test statistic is formulated as Z = (p_B - p_A) / sqrt(p_pool × (1 - p_pool) × (1/N_A + 1/N_B)), yielding an exact p-value via the Gauss error function: p = 2 × (1 - Φ(|Z|)).
A result is declared statistically significant when p-value < α (e.g., α = 0.05 for 95% confidence). Required sample size per variation follows Evan Miller's formula: N = 2 × (Z_{α/2} + Z_β)² × p̄(1 - p̄) / δ², where δ represents the Minimum Detectable Effect (MDE). Running tests until reaching this exact pre-calculated sample size eliminates the false-positive peeking fallacy.
1. Split-Test Experiment Data
Real-time two-tailed Z-testControl Group (Variation A)
Treatment Group (Variation B)
Statistical Parameters
2. Statistical Significance Output
Statistically Significant Winner (95% Confidence)Sample Size Requirement (MDE: 15.0%)
22,632 / variantThe Mathematical Framework of Conversion A/B Testing
Online experimentation relies on rigorous hypothesis testing to protect commercial platforms from rolling out noisy, false-positive variations:
1. Pooled Standard Error
Weights variance across both cohorts under the null hypothesis (H₀: p_A = p_B).
2. Two-Tailed Z-Score & P-Val
p-value = 2(1 - Φ(|Z|)). If p < α, we reject the null hypothesis.
3. Sample Size (Evan Miller)
Calculates minimum sample size required before launching the experiment.
Minimum Required Sample Sizes by Baseline CR & MDE (95% Conf, 80% Power)
Estimated sample size per variation required to reliably detect relative improvements without premature stoppage:
| Baseline CR | MDE: ±5% Lift | MDE: ±10% Lift | MDE: ±15% Lift | MDE: ±20% Lift | Feasibility on 10k Visits/Mo |
|---|---|---|---|---|---|
| 1.0% | 1,550,000 / variant | 388,000 / variant | 172,000 / variant | 97,000 / variant | Requires High-Traffic Platform |
| 3.0% (Average E-com) | 508,000 / variant | 127,000 / variant | 56,500 / variant | 31,800 / variant | Feasible in 2–4 Months |
| 5.0% (High-Intent Lead Gen) | 298,000 / variant | 74,500 / variant | 33,200 / variant | 18,700 / variant | Feasible in 1–2 Months |
| 10.0% (Trial / Micro-step) | 141,000 / variant | 35,300 / variant | 15,700 / variant | 8,850 / variant | Rapid Turnaround (<3 Weeks) |