NORM.INV()/NORMINV()

SyntaxNORMINV(probability,mean,standard_dev)

Definition. This function returns the quantile of the normal distribution.

Arguments

Note

If one of the arguments isn’t a numeric expression, the NORM.INV() function returns the #VALUE! error.

If probability is less than 0 or greater than 1, the NORM.INV() function returns the #NUM! error.

If standard_dev is less than or equal to 0, the function returns the #NUM! error. If mean = 0 and standard_dev = 1, NORM.INV() uses the standard normal distribution (see the description of NORM.S.INV()).

Background. A standardized normal distribution is a normal distribution with the mean value 0 and the standard deviation 1. Each normal distribution can be transformed into a standard normal distribution by subtracting the mean from the xi values and dividing the difference by the standard deviation.

Because the standard normal distribution is standardized, you can calculate the range for the normal distribution from the z-values by using the following formula:

image with no caption

See Also

You will find more information about normal distributions in the description of NORM.DIST().

For the density function of the standard normal distribution, the intervals are 1, 2, and 3 standard deviations from the expected value 0 (see Figure 12-104). These ranges are about 68 percent, 95.5 percent, and 99.7 percent of the bell curve. The same percentages apply for all normal distributions regarding the expected values and the standard deviations.

The density function of the standard normal distribution.

Figure 12-104. The density function of the standard normal distribution.

Example. You are a light bulb manufacturer and want to analyze the performance of light bulbs. You also have calculated the average life cycle and the associated standard deviation. Now you want to know the performance of 85 percent and 15 percent of your light bulbs based on the mean values and the standard deviation.

For this calculation, you use the NORM.INV() function with the following arguments:

Figure 12-105 shows the results.

NORM.INV() returns the performance of 85 percent or 15 percent of the light bulbs.

Figure 12-105. NORM.INV() returns the performance of 85 percent or 15 percent of the light bulbs.

You can make the following statements from these results:

See Also

NORM.DIST(), NORM.S.DIST(), NORM.S.INV(), STANDARDIZE(), Z.TEST()