This calculator is useful for tests concerning whether the means of several groups are equal. The statistical model is called an Analysis of Variance, or ANOVA model. This calculator is for the particular situation where we wish to make pairwise comparisons between groups. That is, we test for equality between two groups at a time, and we make several of these comparisons.
For example, suppose we want to compare the means of three groups called foo, bar, and ack. These groups may represent groups of people that have been exposed to three different medical procedures, marketing schemes, etc. The complete list of pairwise comparisons are foo vs. bar, foo vs. ack, and bar vs. ack.
In more general terms, we may have $k$ groups, meaning there are a total of $K\equiv\binom{k}{2}=k(k-1)/2$ possible pairwise comparisons. When we test $\tau\le K$ of these pairwise comparisons, we have $\tau$ hypotheses of the form
This calculator uses the following formulas to compute sample size and power, respectively: $$ n=2\left(\sigma\frac{z_{1-\alpha/(2\tau)}+z_{1-\beta}}{\mu_A-\mu_B}\right)^2$$ $$1-\beta= \Phi\left(z-z_{1-\alpha/(2\tau)}\right)+\Phi\left(-z-z_{1-\alpha/(2\tau)}\right) \quad ,\quad z=\frac{\mu_A-\mu_B}{\sigma\sqrt{\frac{2}{n}}}$$ where
R code to implement these functions:
muA=5 muB=10 sd=10 tau=1 alpha=0.05 beta=0.20 (n=2*(sd*(qnorm(1-alpha/(2/tau))+qnorm(1-beta))/(muA-muB))^2) ceiling(n) # 63 z=(muA-muB)/(sd*sqrt(2/n)) (Power=pnorm(z-qnorm(1-alpha/(2/tau)))+pnorm(-z-qnorm(1-alpha/(2/tau))))
Chow S, Shao J, Wang H. 2008. Sample Size Calculations in Clinical Research. 2nd Ed. Chapman & Hall/CRC Biostatistics Series. page 71.