A/B Test Significance Calculator
Statistical significance, confidence level, and winner determination.
Experiment data
liveVariant A (control)
Variant B (treatment)
Statistical verdict
Invalid input
Conversions cannot exceed visitors.
CR_A
%
CR_B
%
Relative lift
%
Confidence
%
Verdict
How to use this calculator
- Enter visitors and conversions for variant A (control).
- Enter the same for variant B (treatment). Conversion can be any binary event: purchase, signup, click.
- The calculator runs a two-tailed z-test for two proportions and returns the confidence level.
- Look for confidence ≥ 95% before declaring a winner. Pre-commit to your sample size; do not stop early.
Calculation method
pA = convA / visA
pB = convB / visB
p_pool = (convA + convB) / (visA + visB)
SE = sqrt(p_pool x (1-p_pool) x (1/visA + 1/visB))
z = (pB - pA) / SE
p-value = 2 x (1 - normalCdf(|z|))
Confidence = (1 - p-value) x 100
Uses an Abramowitz-Stegun rational approximation for the normal CDF (accurate to ~7 decimals). For very small samples (<30 conversions per variant) consider a Fisher exact test.
Frequently Asked Questions
Related Calculators
Business & SaaS Disclaimer
Statistical significance is necessary but not sufficient for business decisions. Consider effect size, segment heterogeneity, and long-term retention impact before rolling out a winner. SaaSCalcHub is not business or financial advice. Consult business advisors, CPAs, and consultants for your specific situation.
Last updated: May 26, 2026