The Foundations of Hypothesis Testing in Conversion Rate Optimization (CRO)
- • A/B testing (split testing) is the scientific methodology of comparing two versions of a webpage or app screen—a Control (A) and a Variant (B)—to determine which produces a superior conversion rate. In frequentist statistical hypothesis testing, we formulate two hypotheses:
- • Null Hypothesis (H0): There is no true difference in conversion rate between Control and Variant (pA = pB). Any observed difference is purely due to random sampling noise.
- • Alternative Hypothesis (H1): There is a real, statistically measurable difference between the two experiences (pA ≠ pB).
Statistical significance evaluates the probability of obtaining results at least as extreme as those observed, assuming the null hypothesis is true. Without statistical rigor, marketing teams risk committing Type I Errors (false positives: declaring a losing variant a winner) or Type II Errors (false negatives: failing to detect a genuine conversion lift).
// Key Statistical Thresholds for Conversion Experiments
Confidence Level: 95% (Standard) | α = 0.05 | Critical Z = 1.96
Confidence Level: 99% (Strict) | α = 0.01 | Critical Z = 2.576
Statistical Power: 80% (Standard) | β = 0.20 | Z_β = 0.842
// Decision Rule (Two-Tailed):
If P-value < α (0.05) AND Z > +1.96 --> Variant is a Significant Winner (95% Conf.)
If P-value < α (0.05) AND Z < -1.96 --> Variant is a Significant Loser (95% Conf.)
If P-value >= α (0.05) --> Inconclusive (Insufficient Sample or No Effect)