Calculations for the normal distribution
Normal distributions
In Chapter 1.2, the normal distribution and the -- rule were introduced. The empirical rule is helpful for quick estimates, but it only gives a few specific percentages. What if you need a probability that isn’t one of those benchmarks — for example, the percent within half a standard deviation of the mean, or the percent above standard deviations?
There are two common ways to find these probabilities:
- Use a z-score table (provided on the AP Statistics exam)
- Use software
This text uses software because it’s faster and more accurate, and it doesn’t prevent you from showing clear work on free-response questions.
Practice problem
Example 1:
IQ scores are normally distributed with a mean of and a standard deviation of .
Since this is not the standard normal distribution (the mean is not and the standard deviation is not ), we must use normalcdf(lower bound, upper bound, mean, standard deviation) and invNorm(probability, mean, standard deviation) to get accurate results. Failing to provide the mean and standard deviation will cause the software to incorrectly assume they are and .
Part a.
What is the probability that a randomly selected person will score below ?
To find , we treat “below ” as “between a very low value and .” Since an IQ score can’t be below in this context, we use as the lower bound:
Solution:
The probability of a randomly selected person scoring below is about .
You may have expected the answer to be from the -- rule: about of values are within two standard deviations, leaving about outside, and half of that is .
The difference happens because is a rounded approximation. Software typically reports a more precise value (often rounded to four decimal places). Also, using as the lower bound reflects the idea that IQ scores can’t be negative, although that choice has only a small effect because is many standard deviations below the mean.
Part b.
What is the probability that a randomly selected person will score between and ?
We want , so we plug both bounds directly into normalcdf:
Solution:
The probability of a randomly selected person scoring between and is about .
Part c.
What is the probability that a randomly selected person will score between and ?
We want :
Solution:
The probability of a randomly selected person scoring between and is about .
Part d.
What is the probability that a randomly selected person will score above ?
We want . Since there is no practical maximum IQ score, one clean approach is to find the probability of scoring below and subtract from :
Alternatively, use a very large number as the upper bound:
The slight difference occurs because the first method uses as the lower bound (reflecting that IQ can’t be negative), while the second method includes the tiny theoretical probability below .
Solution:
The probability of a randomly selected person scoring above is about .
Part e.
of people will score less than what score?
We want the 20th percentile, so the probability to the left is :
Solution:
The bottom of people scored below .
Part f.
of people will score more than what score?
We want the cutoff for the top , meaning is to the right of the cutoff. Since invNorm uses the probability to the left, we convert:
Solution:
The top of people scored above .
Part g.
The middle of people will have an IQ between which two scores?
The middle leaves in the tails, split evenly: on the bottom and on the top. We find the 10th and 90th percentiles:
Solution:
The middle of people scored between and .