Norm inv
NORM.INV Function¶
The NORM.INV function in Excel is used to calculate the inverse of the normal cumulative distribution for a
specified probability, mean, and standard deviation. In other words, it returns the value x such that the cumulative
distribution function of the normal distribution equals a given probability.
Key Features of NORM.INV:¶
- Converts a probability value from the cumulative normal distribution back into a corresponding
xvalue. - Useful for statistical analysis, such as determining threshold values or z-scores for a specific probability level.
Syntax:¶
- probability: Required. The cumulative probability for which you want to find the corresponding
xvalue. - mean: Required. The mean (average) of the normal distribution.
- standard_dev: Required. The standard deviation of the normal distribution.
How It Works:¶
The function computes the value of x using the inverse of the cumulative normal distribution function. For a given
cumulative probability, it determines the corresponding data point in the normal distribution characterized by the
specified mean and standard deviation.
Examples:¶
-
Basic Example: To find the value of
Result:xsuch that the cumulative probability is0.95for a normal distribution with a mean of50and standard deviation of10:66.448. -
Real-Life Scenario: Assume test scores in an exam follow a normal distribution with a mean of
Result:75and a standard deviation of15. To find the score corresponding to the top 5% of students (95th percentile):99.674.
Notes:¶
-
Input Validation:
- The
probabilityparameter must be between0and1. Otherwise, the function will return a#NUM!error. - If
meanorstandard_devare non-numeric, the function returns a#VALUE!error. - A
standard_devvalue of0or negative will result in a#NUM!error.
- The
-
Output Ranges:
- The output value depends on the distribution parameters. For probabilities close to
0or1, thexvalue may approach extreme values.
- The output value depends on the distribution parameters. For probabilities close to
Applications:¶
- Statistical Analysis: Use
NORM.INVto compute thresholds or determine cutoff points for specific percentiles within a dataset. - Finance: Estimate risk thresholds or calculate value-at-risk (VaR) in portfolio analysis.
- Quality Control: Identify process limits for reaching a given defect probability.
- Education: Determine exam score cutoffs corresponding to certain percentile ranks.
Tip: The
NORM.INVfunction replaced the olderNORMINVfunction starting with Excel 2010 to align with other statistical functions.NOTE: The implementation is the same as NORMINV