Sample Size, $n$

Power, $1-\beta$

Type I error rate, $\alpha$



X-axis

min

max


Calculate Sample Size Needed to Test 1 Mean: 1-Sample Non-Inferiority or Superiority


This calculator is useful for the types of tests known as non-inferiority and superiority tests. Whether the null hypothesis represents 'non-inferiority' or 'superiority' depends on the context and whether the non-inferiority/superiority margin, $\delta$, is positive or negative. In this setting, we wish to test whether a mean, $\mu$, is non-inferior/superior to a reference value, $\mu_0$. The idea is that statistically significant differences between the mean and the reference value may not be of interest unless the difference is greater than a threshold, $\delta$. This is particularly popular in clinical studies, where the margin is chosen based on clinical judgement and subject-domain knowledge. The hypotheses to test are

$H_0:\mu-\mu_0\le\delta$
$H_1:\mu-\mu_0>\delta$

and $\delta$ is the superiority or non-inferiority margin.

Formulas

This calculator uses the following formulas to compute sample size and power, respectively: $$n=\left(\sigma\frac{z_{1-\alpha}+z_{1-\beta}}{\mu-\mu_0-\delta}\right)^2$$
$$1-\beta= \Phi\left(z-z_{1-\alpha}\right)+\Phi\left(-z-z_{1-\alpha}\right) \quad ,\quad z=\frac{\mu-\mu_0-\delta}{\sigma/\sqrt{n}}$$
where

R Code

R code to implement these functions:

mu=2
mu0=1.5
delta=-0.5
sd=1
alpha=0.05
beta=0.20
(n=(sd*(qnorm(1-alpha)+qnorm(1-beta))/(mu-mu0-delta))^2)
ceiling(n)# 7
z=(mu-mu0-delta)/sd*sqrt(n)
(Power=pnorm(z-qnorm(1-alpha))+pnorm(-z-qnorm(1-alpha)))

References

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