How to Find a Normal Distribution Probability

For a normal distribution with a known mean and standard deviation, finds the probability of being at most a given value. It standardises with z = (x − mean) ÷ standard deviation and returns the lower-tail probability.

For a normal distribution with mean μ\mu and standard deviation σ\sigma, this finds the probability of a value being at most xx.

First standardise:

z=xμσz = \dfrac{x - \mu}{\sigma}

Then read the lower-tail probability of the standard normal distribution (mean 0, standard deviation 1), written Φ(z)=P(Zz)\Phi(z) = P(Z \le z).

Example

On a test with a mean of 60 and a standard deviation of 10, what share of people score 75 or below?

z=756010=1.5z = \dfrac{75 - 60}{10} = 1.5
P(X75)=Φ(1.5)=0.9332P(X \le 75) = \Phi(1.5) = 0.9332

93.32% score at or below 75, so scoring above it puts you in the top 6.68%.

Numbers worth remembering

In a normal distribution the probability depends only on how many standard deviations you are from the mean.

The 95% used for confidence intervals corresponds precisely to ±1.96σ\pm 1.96\sigma.

Watch out