Norm dist
NORMDIST Function¶
The NORMDIST function in Excel is used to calculate the normal distribution for a given value.
The normal distribution is a bell-shaped curve used to represent data that is evenly distributed around a mean.
Key Features of NORMDIST:¶
- Computes the probability density or cumulative probability of a value based on the normal distribution.
- Useful for statistical analysis, such as evaluating probabilities, z-scores, or distributions in data.
Syntax:¶
- x: Required. The value for which you want to calculate the distribution.
- mean: Required. The mean (average) of the distribution.
- standard_dev: Required. The standard deviation of the distribution.
- cumulative: Required. A logical value that determines the type of distribution to be calculated:
TRUE: Returns the cumulative distribution function (CDF), the probability thatxis less than or equal to a value.FALSE: Returns the probability density function (PDF), the height of the distribution curve atx.
How It Works:¶
The NORMDIST function uses the formulas for either the cumulative or probability density function of the normal
distribution:
-
Probability Density Function (PDF): For
This computes the height of the normal distribution atcumulative = FALSE, the formula used is:x. -
Cumulative Distribution Function (CDF): For
cumulative = TRUE, the function uses integration to calculate the area under the curve to the left ofx.
Examples:¶
-
Basic Example (PDF): To calculate the probability density for
Result:x = 50, with a mean of45and standard deviation of10:0.0352065. -
Cumulative Distribution Example (CDF): To find the cumulative probability that a value is less than or equal to
Result:70, where the distribution has a mean of65and a standard deviation of15:0.630558. -
Real-Life Scenario: A company tracks its employees' test scores, which follow a normal distribution with a mean of
Result:80and a standard deviation of10. To determine the probability of a score below90:0.841345.
Notes:¶
-
Input Validation:
- If standard_dev is
0or negative, the function returns#NUM!. - If any input is non-numeric, the function returns
#VALUE!.
- If standard_dev is
-
Choosing Between PDF and CDF:
- Use
FALSEfor probability density when you are interested in the height of the curve at a specific point. - Use
TRUEfor cumulative probability when you need the total probability up to a point.
- Use
-
Output Ranges:
- The cumulative probability (
cumulative = TRUE) output value is always between0and1. - The probability density (
cumulative = FALSE) is not bounded between0and1.
- The cumulative probability (
Applications:¶
- Statistical Analysis: Evaluate normal probabilities for statistical tasks like hypothesis testing or data modeling.
- Finance: Calculate probabilities for returns, prices, or risk analysis.
- Quality Control: Check how a measurement compares to a process's mean.
- Healthcare: Model probabilities of data based on patient statistics.
Tip: The
NORMDISTfunction was replaced by theNORM.DISTfunction in Excel 2010 and later versions, which supports similar functionality with enhanced features.