NORMDIST
The NORMDIST
function in Google Sheets is used to calculate the value of the normal distribution function (or normal cumulative distribution function) for a given value, mean, and standard deviation. Whether you're working with statistical data, analyzing probability distributions, or performing risk assessments, the NORMDIST
function is a valuable tool. Read on to learn how to apply this function effectively.
Function Syntax and Parameters
Syntax: NORMDIST(x, mean, standard_deviation, cumulative)
Parameters:
x
: The value for which you want to calculate the normal distribution.mean
: The arithmetic mean of the normal distribution.standard_deviation
: The standard deviation of the normal distribution.cumulative
: [Optional] A logical value indicating whether to return the cumulative distribution function (TRUE) or the probability density function (FALSE). The default value is FALSE.
Step-by-Step Tutorial
-
Calculating the normal distribution function:
- Example:
=NORMDIST(2.5, 0, 1, FALSE)
- Result:
0.006209665
- Example:
-
Calculating the cumulative distribution function:
- Example:
=NORMDIST(2.5, 0, 1, TRUE)
- Result:
0.993790335
- Example:
Use Cases and Scenarios
- Risk Assessment: Calculate the probability of a certain event occurring based on a normal distribution.
- Quality Control: Determine the likelihood of a product falling within a specified tolerance range.
- Financial Analysis: Analyze investment returns based on a normal distribution of historical data.
Related Functions
- None
Related Articles
- None