Finding Probabilities Using Standard Normal
Finding probabilities (proportions or percentages) in normal distributions becomes simple once you understand how to use tables or calculators. There are two main approaches:
Using Table A: This standard normal table shows the area under the curve to the left of any z-score. Find your z-score on the left and top margins, then read the corresponding probability. For example, the area to the left of z = 0.56 is 0.7123.
Using a Graphing Calculator: The normalcdf function makes this even easier. Just input the lower and upper boundaries, with mean 0 and standard deviation 1.
You can find various types of probabilities:
- Less than a value: Find area to the left
- Greater than a value: Calculate 1 - (area to the left)
- Between two values: Find the difference between the two areas
You can also work backward! If you know a probability and want to find the corresponding value, use invNorm on a calculator or look for the closest value in Table A. For example, to find the z-score where 92% of values fall below it, you'd get z = 1.41.
Calculator Tip: The normalcdf function takes four inputs: lower bound, upper bound, mean, and standard deviation. To find areas under the standard normal curve, use mean=0 and std=1.