Calculates the probability density function (PDF) or the cumulative distribution function (CDF) of the standard normal distribution.
NORM.S.DIST(z, cumulative)
z is required, and is the value that you want to use for the standard normal distribution.
cumulative is required, and is a logical value:
TRUE: Returns the cumulative distribution function (the probability that a random variable is less than or equal to z).
FALSE: Returns the probability density function (the height of the standard normal distribution curve at z).
Example:
If z contains 1.5 and cumulative contains TRUE:
NORM.S.DIST(1.5, TRUE)
returns 0.933192799
If z contains 1.5 and cumulative contains FALSE:
NORM.S.DIST(1.5, FALSE)
returns 0.129517596
z:
Cumulative:
Result:
Analyzing Standardized Test Scores
Imagine a national standardized test where the scores are normalized to a standard normal distribution with a mean of 0 and a standard deviation of 1. The score a student receives is represented by a Z-score. You can use the NORM.S.DIST function to determine the percentage of students who scored below a certain Z-score or to find the probability density at that specific Z-score.
Here is a table demonstrating the use of NORM.S.DIST for various Z-scores.
Z-Score | CDF (Cumulative Probability) | PDF (Probability Density) | ||
|---|---|---|---|---|
A | B | C | ||
1 | -2 | 0.0228 | 0.054 | |
2 | -1 | 0.1587 | 0.242 | |
3 | 0 | 0.5 | 0.3989 | |
4 | 1 | 0.8413 | 0.242 | |
5 | 1.5 | 0.9332 | 0.1295 | |
6 | 2 | 0.9772 | 0.054 |
PRODUCT & FEATURES
RESOURCES
Terms | Privacy | Spam Policy
© 2026 Zapof