Sample Size, $n_B$

Power, $1-\beta$

Type I error rate, $\alpha$



X-axis

min

max


Calculate Sample Size Needed to Compare 2 Proportions: 2-Sample, 1-Sided


This calculator is useful for tests concerning whether the proportions in two groups are different. Suppose the two groups are 'A' and 'B', and we collect a sample from both groups -- i.e. we have two samples. We perform a two-sample test to determine whether the proportion in group A, $p_A$, is different from the proportion in group B, $p_B$. The hypotheses are

$H_0:p_A=p_B$
$H_1:p_A\lt p_B$
.
or
$H_0:p_A=p_B$
$H_1:p_A\gt p_B$
.
where the ratio between the sample sizes of the two groups is
$$\kappa=\frac{n_A}{n_B}$$

Formulas

This calculator uses the following formulas to compute sample size and power, respectively: $$ n_A=\kappa n_B \;\text{ and }\; n_B=\left(\frac{p_A(1-p_A)}{\kappa}+p_B(1-p_B)\right) \left(\frac{z_{1-\alpha}+z_{1-\beta}}{p_A-p_B}\right)^2$$
$$1-\beta=\Phi\left(\frac{|p_A-p_B|}{\sqrt{\frac{p_A(1-p_A)}{n_A}+\frac{p_B(1-p_B)}{n_B}}}-z_{1-\alpha}\right)$$
where

R Code

R code to implement these functions:

pA=0.65
pB=0.85
kappa=1
alpha=0.05
beta=0.20
(nB=(pA*(1-pA)/kappa+pB*(1-pB))*((qnorm(1-alpha)+qnorm(1-beta))/(pA-pB))^2)
ceiling(nB) # 55
z=(pA-pB)/sqrt(pA*(1-pA)/nB/kappa+pB*(1-pB)/nB)
(Power=pnorm(abs(z)-qnorm(1-alpha)))
## Note:The example from Chow p.89 is obtained
## by using alpha=0.025

References

Chow S, Shao J, Wang H. 2008. Sample Size Calculations in Clinical Research. 2nd Ed. Chapman & Hall/CRC Biostatistics Series. page 89.