The NORMINV function in Excel is a powerful statistical tool used to determine the value of a variable that corresponds to a specified probability in a normal distribution. It calculates the inverse of the normal cumulative distribution, enabling users to find z-scores or specific percentile values based on the mean and standard deviation of a data set. This function is particularly useful in fields like finance, quality control, and data analysis, where understanding the distribution of data points is crucial.
Syntax
NORMINV(probability, mean, standard_dev)
- probability: A numeric value between 0 and 1 representing the cumulative probability for which you want to find the corresponding value in the distribution.
- mean: The arithmetic mean of the distribution, which centers the normal distribution curve.
- standard_dev: The standard deviation of the distribution, which measures the spread of values around the mean.
Example #1
=NORMINV(0.95, 100, 15)
This function calculates the value corresponding to the 95th percentile of a normal distribution with a mean of 100 and a standard deviation of 15. The result in this case would be approximately 123.3.
Example #2
=NORMINV(0.5, 50, 10)
This function finds the median of a normal distribution (50th percentile) where the mean is 50 and the standard deviation is 10. In this example, the output will be exactly 50 since it represents the center of the distribution.
Example #3
=NORMINV(0.05, 200, 30)
Here, the function calculates the value at the 5th percentile for a normal distribution with a mean of 200 and a standard deviation of 30. The result would be approximately 157.5.
Error handling
- VALUE! This error occurs when the inputs are not numeric (e.g., text instead of numbers).
- NUM! This error arises if the probability is not between 0 and 1 or if the standard deviation is less than or equal to zero, making the function invalid.
- N/A This error indicates that a valid result cannot be calculated based on the provided inputs.