Skip to main content
Statistics LibreTexts

6.3: Finding Probabilities for the Normal Distribution

  • Page ID
    5194
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    The Empirical Rule is just an approximation and only works for certain values. What if you want to find the probability for x values that are not integer multiples of the standard deviation? The probability is the area under the curve. To find areas under the curve, you need calculus. Before technology, you needed to convert every x value to a standardized number, called the z-score or z-value or simply just z. The z-score is a measure of how many standard deviations an x value is from the mean. To convert from a normally distributed x value to a z-score, you use the following formula.

    Definition \(\PageIndex{1}\): z-score

    \[z=\dfrac{x-\mu}{\sigma} \label{z-score}\]

    where \(\mu\)= mean of the population of the x value and \(\sigma\)= standard deviation for the population of the x value

    The z-score is normally distributed, with a mean of 0 and a standard deviation of 1. It is known as the standard normal curve. Once you have the z-score, you can look up the z-score in the standard normal distribution table.

    Definition \(\PageIndex{2}\): standard normal distribution

    The standard normal distribution, z, has a mean of \(\mu =0\) and a standard deviation of \(\sigma =1\).

    Screenshot (84).png
    Figure \(\PageIndex{1}\): Standard Normal Curve

    Luckily, these days technology can find probabilities for you without converting to the zscore and looking the probabilities up in a table. There are many programs available that will calculate the probability for a normal curve including Excel and the TI-83/84. There are also online sites available. The following examples show how to do the calculation on the TI-83/84 and with R. The command on the TI-83/84 is in the DISTR menu and is normalcdf(. You then type in the lower limit, upper limit, mean, standard deviation in that order and including the commas. The command on R to find the area to the left is pnorm(z-value or x-value, mean, standard deviation).

    Example \(\PageIndex{1}\) general normal distribution

    The length of a human pregnancy is normally distributed with a mean of 272 days with a standard deviation of 9 days (Bhat & Kushtagi, 2006).

    1. State the random variable.
    2. Find the probability of a pregnancy lasting more than 280 days.
    3. Find the probability of a pregnancy lasting less than 250 days.
    4. Find the probability that a pregnancy lasts between 265 and 280 days.
    5. Find the length of pregnancy that 10% of all pregnancies last less than.
    6. Suppose you meet a woman who says that she was pregnant for less than 250 days. Would this be unusual and what might you think?

    Solution

    a. x = length of a human pregnancy

    b. First translate the statement into a mathematical statement.

    P (x>280)

    Now, draw a picture. Remember the center of this normal curve is 272.

    Screenshot (85).png
    Figure for Example \(\PageIndex{1}\)b

    To find the probability on the TI-83/84, looking at the picture you realize the lower limit is 280. The upper limit is infinity. The calculator doesn’t have infinity on it, so you need to put in a really big number. Some people like to put in 1000, but if you are working with numbers that are bigger than 1000, then you would have to remember to change the upper limit. The safest number to use is \(1 \times 10^{99}\), which you put in the calculator as 1E99 (where E is the EE button on the calculator). The command looks like:

    \(\text{normalcdf}(280,1 E 99,272,9)\)

    Screenshot (86).png
    Figure \(\PageIndex{3}\): TI-83/84 Output for Example \(\PageIndex{1}\)b

    To find the probability on R, R always gives the probability to the left of the value. The total area under the curve is 1, so if you want the area to the right, then you find the area to the left and subtract from 1. The command looks like:

    \(1-\text { pnom }(280,272,9)\)

    Thus, \(P(x>280) \approx 0.187\)

    Thus 18.7% of all pregnancies last more than 280 days. This is not unusual since the probability is greater than 5%.

    c. First translate the statement into a mathematical statement.

    P (x<250)

    Now, draw a picture. Remember the center of this normal curve is 272.

    Screenshot (87).png
    Figure for Example \(\PageIndex{1}\)c

    To find the probability on the TI-83/84, looking at the picture, though it is hard to see in this case, the lower limit is negative infinity. Again, the calculator doesn’t have this on it, put in a really small number, such as \(-1 \times 10^{99}=-1 E 99\) on the calculator.

    Screenshot (88).png
    Figure \(\PageIndex{5}\): TI-83/84 Output for Example \(\PageIndex{1}\)c

    \(P(x<250)=\text { normalcdf }(-1 E 99,250,272,9)=0.0073\)

    To find the probability on R, R always gives the probability to the left of the value. Looking at the figure, you can see the area you want is to the left. The command looks like:

    \(P(x<250)=\text { pnorm }(250,272,9)=0.0073\)

    Thus 0.73% of all pregnancies last less than 250 days. This is unusual since the probability is less than 5%.

    d. First translate the statement into a mathematical statement.

    P (265<x<280)

    Now, draw a picture. Remember the center of this normal curve is 272.

    Screenshot (89).png
    Figure for Example \(\PageIndex{1}\)d

    In this case, the lower limit is 265 and the upper limit is 280.

    Using the calculator

    Screenshot (90).png
    Figure \(\PageIndex{7}\): TI-83/84 Output for Example \(\PageIndex{1}\)d

    \(P(265<x<280)=\text { normalcdf }(265,280,272,9)=0.595\)

    To use R, you have to remember that R gives you the area to the left. So \(P(x<280)=\text { pnom }(280,272,9)\) is the area to the left of 280 and \(P(x<265)=\text { pnom }(265,272,9)\) is the area to the left of 265. So the area is between the two would be the bigger one minus the smaller one. So, \(P(265<x<280)=\text { pnorm }(280,272,9)-\text { pnorm }(265,272,9)=0.595\). Thus 59.5% of all pregnancies last between 265 and 280 days.

    e. This problem is asking you to find an x value from a probability. You want to find the x value that has 10% of the length of pregnancies to the left of it. On the TI-83/84, the command is in the DISTR menu and is called invNorm(. The invNorm( command needs the area to the left. In this case, that is the area you are given. For the command on the calculator, once you have invNorm( on the main screen you type in the probability to the left, mean, standard deviation, in that order with the commas.

    Screenshot (91).png
    Figure \(\PageIndex{8}\): TI-83/84 Output for Example \(\PageIndex{1}\)e

    On R, the command is qnorm(area to the left, mean, standard deviation). For this example that would be qnorm(0.1, 272, 9)

    Thus 10% of all pregnancies last less than approximately 260 days.

    f. From part (c) you found the probability that a pregnancy lasts less than 250 days is 0.73%. Since this is less than 5%, it is very unusual. You would think that either the woman had a premature baby, or that she may be wrong about when she actually became pregnant.

    Example \(\PageIndex{2}\) general normal distribution

    The mean mathematics SAT score in 2012 was 514 with a standard deviation of 117 ("Total group profile," 2012). Assume the mathematics SAT score is normally distributed.

    1. State the random variable.
    2. Find the probability that a person has a mathematics SAT score over 700.
    3. Find the probability that a person has a mathematics SAT score of less than 400.
    4. Find the probability that a person has a mathematics SAT score between a 500 and a 650.
    5. Find the mathematics SAT score that represents the top 1% of all scores.

    Solution

    a. x = mathematics SAT score

    b. First translate the statement into a mathematical statement.

    P (x>700)

    Now, draw a picture. Remember the center of this normal curve is 514.

    Screenshot (92).png
    Figure for Example \(\PageIndex{2}\)b

    On TI-83/84: \(P(x>700)=\text { normalcdf }(700,1 E 99,514,117) \approx 0.056\)

    On R: \(P(x>700)=1-\text { pnorm }(700,514,117) \approx 0.056\)

    There is a 5.6% chance that a person scored above a 700 on the mathematics SAT test. This is not unusual.

    c. First translate the statement into a mathematical statement.

    P (x<400)

    Now, draw a picture. Remember the center of this normal curve is 514.

    Screenshot (93).png
    Figure for Example \(\PageIndex{2}\)c

    On TI-83/84: \(P(x<400)=\text { normalcdf }(-1 E 99,400,514,117) \approx 0.165\)

    On R: \(P(x<400)=\operatorname{pnorm}(400,514,117) \approx 0.165\)

    So, there is a 16.5% chance that a person scores less than a 400 on the mathematics part of the SAT.

    d. First translate the statement into a mathematical statement.

    P (500<x<650)

    Now, draw a picture. Remember the center of this normal curve is 514.

    Screenshot (94).png
    Figure for Example \(\PageIndex{2}\)d

    On TI-83/84: \(P(500<x<650)=\text { normalcdf }(500,650,514,117) \approx 0.425\)

    On R: \(P(500<x<650)=\text { pnorm }(650,514,117)-\text { pnorm }(500,514,117) \approx 0.425\)

    So, there is a 42.5% chance that a person has a mathematical SAT score between 500 and 650.

    e. This problem is asking you to find an x value from a probability. You want to find the x value that has 1% of the mathematics SAT scores to the right of it. Remember, the calculator and R always need the area to the left, you need to find the area to the left by 1 - 0.01 = 0.99.

    On TI-83/84: \(\text{invNorm}(.99,514,117) \approx 786\)

    On R: \(\text{qnorm}(.99,514,117) \approx 786\)

    So, 1% of all people who took the SAT scored over about 786 points on the mathematics SAT.

    Homework

    Exercise \(\PageIndex{1}\)

    1. Find each of the probabilities, where z is a z-score from the standard normal distribution with mean of \(\mu =0\) and standard deviation \(\sigma =1\). Make sure you draw a picture for each problem.
      1. P (z<2.36)
      2. P (z>0.67)
      3. P (0<z<2.11)
      4. P (-2.78<z<1.97)
    2. Find the z-score corresponding to the given area. Remember, z is distributed as the standard normal distribution with mean of \(\mu =0\) and standard deviation \(\sigma =1\).
      1. The area to the left of z is 15%.
      2. The area to the right of z is 65%.
      3. The area to the left of z is 10%.
      4. The area to the right of z is 5%.
      5. The area between -z and z is 95%. (Hint draw a picture and figure out the area to the left of the -z.)
      6. The area between -z and z is 99%.
    3. If a random variable that is normally distributed has a mean of 25 and a standard deviation of 3, convert the given value to a z-score.
      1. x = 23
      2. x = 33
      3. x = 19
      4. x = 45
    4. According to the WHO MONICA Project the mean blood pressure for people in China is 128 mmHg with a standard deviation of 23 mmHg (Kuulasmaa, Hense & Tolonen, 1998). Assume that blood pressure is normally distributed.
      1. State the random variable.
      2. Find the probability that a person in China has blood pressure of 135 mmHg or more.
      3. Find the probability that a person in China has blood pressure of 141 mmHg or less.
      4. Find the probability that a person in China has blood pressure between 120 and 125 mmHg.
      5. Is it unusual for a person in China to have a blood pressure of 135 mmHg? Why or why not?
      6. What blood pressure do 90% of all people in China have less than?
    5. The size of fish is very important to commercial fishing. A study conducted in 2012 found the length of Atlantic cod caught in nets in Karlskrona to have a mean of 49.9 cm and a standard deviation of 3.74 cm (Ovegard, Berndt & Lunneryd, 2012). Assume the length of fish is normally distributed.
      1. State the random variable.
      2. Find the probability that an Atlantic cod has a length less than 52 cm.
      3. Find the probability that an Atlantic cod has a length of more than 74 cm.
      4. Find the probability that an Atlantic cod has a length between 40.5 and 57.5 cm.
      5. If you found an Atlantic cod to have a length of more than 74 cm, what could you conclude?
      6. What length are 15% of all Atlantic cod longer than?
    6. The mean cholesterol levels of women age 45-59 in Ghana, Nigeria, and Seychelles is 5.1 mmol/l and the standard deviation is 1.0 mmol/l (Lawes, Hoorn, Law & Rodgers, 2004). Assume that cholesterol levels are normally distributed.
      1. State the random variable.
      2. Find the probability that a woman age 45-59 in Ghana, Nigeria, or Seychelles has a cholesterol level above 6.2 mmol/l (considered a high level).
      3. Find the probability that a woman age 45-59 in Ghana, Nigeria, or Seychelles has a cholesterol level below 5.2 mmol/l (considered a normal level).
      4. Find the probability that a woman age 45-59 in Ghana, Nigeria, or Seychelles has a cholesterol level between 5.2 and 6.2 mmol/l (considered borderline high).
      5. If you found a woman age 45-59 in Ghana, Nigeria, or Seychelles having a cholesterol level above 6.2 mmol/l, what could you conclude?
      6. What value do 5% of all woman ages 45-59 in Ghana, Nigeria, or Seychelles have a cholesterol level less than?
    7. In the United States, males between the ages of 40 and 49 eat on average 103.1 g of fat every day with a standard deviation of 4.32 g ("What we eat," 2012). Assume that the amount of fat a person eats is normally distributed.
      1. State the random variable.
      2. Find the probability that a man age 40-49 in the U.S. eats more than 110 g of fat every day.
      3. Find the probability that a man age 40-49 in the U.S. eats less than 93 g of fat every day.
      4. Find the probability that a man age 40-49 in the U.S. eats less than 65 g of fat every day.
      5. If you found a man age 40-49 in the U.S. who says he eats less than 65 g of fat every day, would you believe him? Why or why not?
      6. What daily fat level do 5% of all men age 40-49 in the U.S. eat more than?
    8. A dishwasher has a mean life of 12 years with an estimated standard deviation of 1.25 years ("Appliance life expectancy," 2013). Assume the life of a dishwasher is normally distributed.
      1. State the random variable.
      2. Find the probability that a dishwasher will last more than 15 years.
      3. Find the probability that a dishwasher will last less than 6 years.
      4. Find the probability that a dishwasher will last between 8 and 10 years.
      5. If you found a dishwasher that lasted less than 6 years, would you think that you have a problem with the manufacturing process? Why or why not?
      6. A manufacturer of dishwashers only wants to replace free of charge 5% of all dishwashers. How long should the manufacturer make the warranty period?
    9. The mean starting salary for nurses is $67,694 nationally ("Staff nurse -," 2013). The standard deviation is approximately $10,333. Assume that the starting salary is normally distributed.
      1. State the random variable.
      2. Find the probability that a starting nurse will make more than $80,000.
      3. Find the probability that a starting nurse will make less than $60,000.
      4. Find the probability that a starting nurse will make between $55,000 and $72,000.
      5. If a nurse made less than $50,000, would you think the nurse was under paid? Why or why not?
      6. What salary do 30% of all nurses make more than?
    10. The mean yearly rainfall in Sydney, Australia, is about 137 mm and the standard deviation is about 69 mm ("Annual maximums of," 2013). Assume rainfall is normally distributed.
      1. State the random variable.
      2. Find the probability that the yearly rainfall is less than 100 mm.
      3. Find the probability that the yearly rainfall is more than 240 mm.
      4. Find the probability that the yearly rainfall is between 140 and 250 mm.
      5. If a year has a rainfall less than 100mm, does that mean it is an unusually dry year? Why or why not?
      6. What rainfall amount are 90% of all yearly rainfalls more than?
    Answer

    1. a. \(P(z<2.36)=0.9909\), b. \(P(z>0.67)=0.2514\), c. \(P(0<z<2.11)=0.4826\), d. \(P(-2.78<z<1.97)=0.9729\)

    3. a. -0.6667, b. -2.6667, c. -2, d. 6.6667

    5. a. See solutions, b. \(P(x<52 \mathrm{cm})=0.7128\), c. \(P(x>74 \mathrm{cm})=5.852 \times 10^{-11}\), d. \(P(40.5 \mathrm{cm}<x<57.5 \mathrm{cm})=0.9729\), e. See solutions, f. 53.8 cm

    7. a. See solutions, b. \(P(x>110 \mathrm{g})=0.0551\) c. \(P(x<93 \mathrm{g})=0.0097\), d. \(P(x<65 \mathrm{g}) \approx 0\) or \(5.57 \times 10^{-19}\), e. See solutions, f. 110.2 g

    9. a. See solutions, b. \(P(x>\$ 80,000)=0.1168\), c. \(P(x>\$ 80,000)=0.2283\), d. \(P(\$ 55,000<x<\$ 72,000)=0.5519\), e. See solutions, f. $73,112


    This page titled 6.3: Finding Probabilities for the Normal Distribution is shared under a CC BY-SA 4.0 license and was authored, remixed, and/or curated by Kathryn Kozak via source content that was edited to the style and standards of the LibreTexts platform; a detailed edit history is available upon request.