Probability Between Two Values in a Normal Distribution

Finds the probability that a normal variable falls between two bounds, as Φ((upper − mean) ÷ σ) − Φ((lower − mean) ÷ σ). Within one standard deviation of the mean, the probability is about 68.27%.

This is the probability that a normal variable lands between aa and bb. Take the probability up to the upper bound and subtract the probability up to the lower one.

P(aXb)=Φ(bμσ)Φ(aμσ)P(a \le X \le b) = \Phi\left(\dfrac{b - \mu}{\sigma}\right) - \Phi\left(\dfrac{a - \mu}{\sigma}\right)

where Φ\Phi is the lower-tail probability of the standard normal distribution.

Example

On a test with mean 60 and standard deviation 10, what share of scores fall between 50 and 70?

zlower=506010=1zupper=706010=1z_{\text{lower}} = \dfrac{50 - 60}{10} = -1 \qquad z_{\text{upper}} = \dfrac{70 - 60}{10} = 1
P(50X70)=Φ(1)Φ(1)=0.84130.1587=0.6827P(50 \le X \le 70) = \Phi(1) - \Phi(-1) = 0.8413 - 0.1587 = 0.6827

68.27%. Since this is exactly one standard deviation either side of the mean, the famous 68% figure drops straight out.

Ranges worth knowing

The "six sigma" of manufacturing refers to a specification window six standard deviations wide, where defects become vanishingly rare.

Watch out