Drill Down: Calculating The Z-Value
Drill Down: Calculating The Z-Value
For a standard normal curve, we know the mean is 0 and the standard deviation is 1, so
we could find a cumulative probability using =NORM.DIST(x,0,1,TRUE). Alternatively,
we use Excel’s NORM.S.DIST function =NORM.S.DIST(z, cumulative). The "S" in this
function indicates it applies to a standard normal curve.
z is the value (the z-value) at which we want to evaluate the standard normal
distribution function.
cumulative is an argument that specifies the type of probability we wish to
calculate. We will insert “TRUE”.
Another way to find the cumulative probability for a normal distribution is to use the
functions STANDARDIZE and NORM.S.DIST. The STANDARDIZE function
“standardizes” the data by returning the z-value, using the familiar
equation, z=x−μσz=x−μσ. Note that the term “standardize” reinforces our interpretation of
the z-value as the number of standard deviations from the mean.
After standardizing, we can insert the resulting z-value into the NORM.S.DIST function
to find the cumulative probability of that z-value.
Related: Alternative Excel Functions
=NORMSDIST(z)
Throughout the course we will provide alternative functions that existed prior to Excel
2010 that can still be used in Excel 2010.
For a normal distribution with mean 100 and standard deviation 10, find the probability of
obtaining a value greater than or equal to 80 but less than or equal to 115.
fx
=NORM.DIST(115,100,10,TRUE)
Result
Incorrect.
First find the cumulative probability of 115 using the function
NORM.DIST(115,B1,B2,TRUE). Then calculate the cumulative probability of 80 using
the function NORM.DIST(80,B1,B2,TRUE). Then find the difference between the two:
NORM.DIST(115,B1,B2,TRUE)–NORM.DIST(80,B1,B2,TRUE)=0.91, or 91%. 91% of
the population lies between 80 and 115.
Throughout the course we will provide alternative functions that existed prior to Excel
2010 that can still be used in Excel 2010.
For a standard normal curve, we could translate a cumulative probability into to a value
using NORM.INV(probability,0,1). Alternatively, we could use the Excel function
NORM.S.INV. The “S” in this function indicates that it applies to a standard normal
curve. Since we are working with the standard normal curve, we can interpret the
resulting value as a z-value.
=NORM.S.INV(probability)
probability is the cumulative probability for which we want to know the corresponding x-
value on a standard normal distribution.
For example, if we wanted to know the z-value for the 95th percentile on a standard
normal curve, we would enter =NORM.S.INV(0.95)=1.645. Equivalently, we could enter
=NORM.INV(0.95,0,1)=1.645.
=NORMSINV(probability)
Throughout the course we will provide alternative functions that existed prior to Excel
2010 that can still be used in Excel 2010.