4. Probability Distributions: Common Distributions
The Normal Probability Distribution
Normal Probability Distribution
If is a value sampled from a population having a distribution, then is a random variable having a probability distribution.
Then for any number :
- is the area to the left of
- is the area to the right of
Important Properties
For any continuous probability distribution, the following properties always hold:
Additionally, for any numbers and (with ), the following property hold:
Computation of Normal Probabilities with Statistical Software
Let be a normal random variable with parameters and .
To calculate cumulative probabilities for a normal distribution in Excel, make use of the following function:
NORM.DIST(x, mean, standard_dev, cumulative)
- x: The value at which you wish to evaluate the distribution function.
- mean: The mean of the distribution.
- standard_dev: The standard deviation of the distribution.
- cumulative: A logical value that determines the form of the function.
- TRUE - uses the cumulative distribution function,
- FALSE - uses the probability density function
To calculate cumulative probabilities for a normal distribution in R, make use of the following function:
pnorm(q, mean, sd, lower.tail)
- q: The value at which you wish to evaluate the distribution function.
- mean: The mean of the distribution.
- sd: The standard deviation of the distribution.
- lower.tail: If TRUE (default), probabilities are , otherwise, .
There are a number of different ways we can calculate . Click on one of the panels to toggle a specific solution.
Since the normal distribution is a continuous distribution, it is true that:
To calculate in Excel, make use of the following function:
NORM.DIST(x, mean, standard_dev, cumulative)
- x: The value at which you wish to evaluate the distribution function.
- mean: The mean of the distribution.
- standard_dev: The standard deviation of the distribution.
- cumulative: A logical value that determines the form of the function.
- TRUE - uses the cumulative distribution function,
- FALSE - uses the probability density function
Thus, to calculate , run the following command:
This gives:
Since the normal distribution is a continuous distribution, it is true that:
To calculate in R, make use of the following function:
Thus, to calculate , run the following command:pnorm(q, mean, sd, lower.tail)
- q: The value at which you wish to evaluate the distribution function.
- mean: The mean of the distribution.
- sd: The standard deviation of the distribution.
- lower.tail: If TRUE (default), probabilities are , otherwise, .
This gives:
pth Quantile
The quantile of a probability distribution is the number such that .
Finding the quantile for a given in is the inverse of finding a probability.
Finding the pth Quantile with Statistical Software
Let be a normal random variable with parameters and .
To calculate the number such that in Excel, make use of the following function:
NORM.INV(probability, mean, standard_dev)
- probability: A probability corresponding to the normal distribution.
- mean: The mean of the distribution.
- standard_dev: The standard deviation of the distribution.
To calculate the number such that in R, make use of the following function:
qnorm(p, mean, sd, lower.tail)
- p: A probability corresponding to the normal distribution.
- mean: The mean of the distribution.
- sd: The standard deviation of the distribution.
- lower.tail: If TRUE (default), probabilities are , otherwise, .
Find the number such that . Round your answer to decimal places.
There are a number of different ways we can calculate the number such that . Click on one of the panels to toggle a specific solution.
To calculate the number such that in Excel, make use of the following function:
NORM.INV(probability, mean, standard_dev)
- probability: A probability corresponding to the normal distribution.
- mean: The mean of the distribution.
- standard_dev: The standard deviation of the distribution.
Thus, to calculate the number such that , run the following command:
This gives:
To calculate the number such that in R, make use of the following function:
Thus, to calculate the number such that , run the following command:qnorm(p, mean, sd, lower.tail)
- p: A probability corresponding to the normal distribution.
- mean: The mean of the distribution.
- sd: The standard deviation of the distribution.
- lower.tail: If TRUE (default), probabilities are , otherwise, .
This gives: