Skip to main content
Statistics LibreTexts

5.4: Using the Normal Distribution

  • Page ID
    29605
  • \( \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}}\)

    \( \newcommand{\vectorA}[1]{\vec{#1}}      % arrow\)

    \( \newcommand{\vectorAt}[1]{\vec{\text{#1}}}      % arrow\)

    \( \newcommand{\vectorB}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \)

    \( \newcommand{\vectorC}[1]{\textbf{#1}} \)

    \( \newcommand{\vectorD}[1]{\overrightarrow{#1}} \)

    \( \newcommand{\vectorDt}[1]{\overrightarrow{\text{#1}}} \)

    \( \newcommand{\vectE}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash{\mathbf {#1}}}} \)

    \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \)

    \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)

    24

    Using the Normal Distribution

    jkesler


    [latexpage]

    The shaded area in the following graph indicates the area to the left of x. This area is represented by the probability P(X < x). Normal tables, computers, and calculators provide or calculate the probability P(X < x).


    This diagram shows a bell-shaped curve with uppercase X at the extreme right end of the X axis. The X axis also contains a lowercase x about one-quarter of the way across the X axis from the right. The area under the bell curve to the right of the lowercase x is shaded. The label states: shaded area represents probability P(X < x).
    Figure 6.4

    The area to the right is then $P(X>x) = 1 –P(X<x)$. Remember, $P(X<x) =$ Area to the left of the vertical line through $x$. $P(X >x) = 1 –P(X<x) =$ Area to the right of the vertical line through $x$. $P(X<x)$ is the same as $P(X≤x)$ and $P(X>x)$ is the same as $P(X\geq x)$ for continuous distributions.

    Calculations of Probabilities

    Probabilities are calculated using technology. There are instructions given as necessary for Google Sheets, many of which will work fine in other modern spreadsheet applications as well.

    NOTE

    To calculate the probability without a spreadsheet program, use the probability tables provided in the appendix.

    Example 5.13

    If the area to the left is 0.0228, then the area to the right is 1 – 0.0228 = 0.9772.

    Try It 5.13

    If the area to the left of x is 0.012, then what is the area to the right?

    Google Sheets: Standard Normal Distribution

    The NORM.S.DIST() function assumes $\mu =0$ and $\sigma=1$ and will give you the probability/area to the left of a z-score that you input into the function. For example, if you type =NORM.S.DIST(2.4), the cell will show the value 0.9918024641 (we generally only need 4 decimal places). This tells us that the probability to the left of $z=2.4$ is 0.9918.

    In most situations, the mean will not be 0, and/or the standard deviation will not be 1. In these cases, you can convert the value for which you want the probability (what we sometimes will call the “$x$-value”) into a $z$-score with the standard formula below and plug that $z$-score into the NORM.S.DIST() function.

    $$z = \frac{x-\mu}{\sigma}$$

    NORM.S.DIST

    Returns the value of the standard normal cumulative distribution function for a specified value.

    Sample Usage

    NORM.S.DIST(2.4)

    NORM.S.DIST(A2)

    Syntax

    NORM.S.DIST(x)

    • x – The input to the standard normal cumulative distribution function.
    Notes
    • The “standard” normal distribution function is the normal distribution function with mean of 0 and variance (and therefore standard deviation) of 1.

    Converting between $z$-scores and $x$-values

    We have seen that to convert an $x$-value whose distribution is normal with a mean $\mu$ and a standard deviation $\sigma$, we can use the standard $z$-score formula.

    $$z=\frac{x-\mu}{\sigma}$$

    We often times need to convert a $z$-score back into an $x$-value. A bit of algebraic manipulation on the $z$-score formula gives us the following formula to convert a $z$-score into an $x$-value. We show this in part 3 of Example 6.8 below.

    $$ x = z \cdot \sigma + \mu$$

    Example 5.14

    The final exam scores in a statistics class were normally distributed with a mean of 63 and a standard deviation of 5.

    1. Find the probability that a randomly selected student scored more than 65 on the exam.
    2. Find the probability that a randomly selected student scored less than 85.
    3. Find the 90th percentile (that is, find the score k that has 90% of the scores below k and 10% of the scores above k).
    4. Find the 70th percentile (that is, find the score k such that 70% of scores are below k and 30% of the scores are above k).

    Google Sheets: Inverse Standard Normal Distribution

    When we need to take a probability and find the associated $z$-score, we can use the NORM.S.INV() function. Note, this is the reverse of what we did previously with the NORM.S.DIST() function, where we had a $z$-score and we needed to find the probability.

    In part 3 of Example 6.8, we used =NORM.S.INV(0.9) to find that 1.28 was the $z$-score that had 0.9, or 90% to the left.

    1.28 is then said to be the 90th percentile.

    NORM.S.INV

    Returns the value of the inverse standard normal distribution function for a specified value.

    Sample Usage

    NORM.S.INV(.75)

    NORM.S.INV(A2)

    Syntax

    NORM.S.INV(x)

    • x – The input to the inverse standard normal distribution function.

    Notes

    • The “standard” normal distribution function is the normal distribution function with mean of 0 and variance (and therefore standard deviation) of 1.
    • x must be greater than 0 and less than 1 or a #NUM! error will occur.

    Try It 5.14

    The golf scores for a school team were normally distributed with a mean of 68 and a standard deviation of three.

    Find the probability that a randomly selected golfer scored less than 65.

    Example 5.15

    A personal computer is used for office work at home, research, communication, personal finances, education, entertainment, social networking, and a myriad of other things. Suppose that the average number of hours a household personal computer is used for entertainment is two hours per day. Assume the times for entertainment are normally distributed and the standard deviation for the times is half an hour.

     

    1. Find the probability that a household personal computer is used for entertainment between 1.8 and 2.75 hours per day.
    2. Find the maximum number of hours per day that the bottom quartile of households uses a personal computer for entertainment.

    Try It 5.15

    The golf scores for a school team were normally distributed with a mean of 68 and a standard deviation of three. Find the probability that a golfer scored between 66 and 70.

    Example 5.16

    In the United States the ages 13 to 55+ of smartphone users approximately follow a normal distribution with approximate mean and standard deviation of 36.9 years and 13.9 years, respectively.

     

    1. Determine the probability that a random smartphone user in the age range 13 to 55+ is between 23 and 64.7 years old.
    2. Determine the probability that a randomly selected smartphone user in the age range 13 to 55+ is at most 50.8 years old.
    3. Find the 80th percentile of this distribution, and interpret it in a complete sentence.

    Try It 5.16

    Use the information in Example 5.16 to answer the following questions.

    1. Find the 30th percentile, and interpret it in a complete sentence.
    2. What is the probability that the age of a randomly selected smartphone user in the range 13 to 55+ is less than 27 years old.

    Example 5.17

    In the United States the ages 13 to 55+ of smartphone users approximately follow a normal distribution with approximate mean and standard deviation of 36.9 years and 13.9 years respectively. Using this information, answer the following questions (round answers to one decimal place).

    1. Calculate the interquartile range (IQR).
    2. Forty percent of the smartphone users from 13 to 55+ are at least what age?

    Try It 5.17

    Two thousand students took an exam. The scores on the exam have an approximate normal distribution with a mean μ = 81 points and standard deviation σ = 15 points.

    1. Calculate the first- and third-quartile scores for this exam.
    2. The middle 50% of the exam scores are between what two values?

    Example 5.18

    A citrus farmer who grows mandarin oranges finds that the diameters of mandarin oranges harvested on his farm follow a normal distribution with a mean diameter of 5.85 cm and a standard deviation of 0.24 cm.

     

    1. Find the probability that a randomly selected mandarin orange from this farm has a diameter larger than 6.0 cm. Sketch the graph.
    2. The middle 20% of mandarin oranges from this farm have diameters between ______ and ______.
    3. Find the 90th percentile for the diameters of mandarin oranges, and interpret it in a complete sentence.

    Try It 5.18

    Using the information from Example 5.18, answer the following:

    1. The middle 40% of mandarin oranges from this farm are between ______ and ______.
    2. Find the 16th percentile and interpret it in a complete sentence.

    Alternative Spreadsheet Functions

    In the calculations we have performed here, we have had to calculate $z$-scores before arriving at an answer. There are two spreadsheet functions analogous to NORM.S.DIST and NORM.S.INV which allow you to bypass the $z$-score calculation. More specifically, these analogous functions perform the $z$-score calculation behind the scenes, but you must provide these functions the distribution mean and standard deviation.

    If you would like to learn more about these functions and how to use them, click on the links below:


    5.4: Using the Normal Distribution is shared under a not declared license and was authored, remixed, and/or curated by LibreTexts.

    • Was this article helpful?