Dapatkan CDF dan PDF normal standar.
=NORM.S.DIST(z, cumulative)
| Parameter | Deskripsi |
|---|---|
z |
Numeric z-score value. |
cumulative |
Logical value that determines the form of the function. |
The NORM.S.DIST function returns values for the standard normal cumulative distribution function (CDF) and the standard normal probability density fun
=NORM.S.DIST(1,TRUE)=0.8413 // Returns the standard normal CDF
=NORM.S.DIST(1,FALSE)=0.2420 // Returns the standard normal PDF
NORM.S.DIST expects standardized input in the form of a z-score value. A z-score value represents how far a value is from the mean of a distribution i
=(x-mean)/standard_deviation // calculates z-score
=STANDARDIZE(x, mean, standard_deviation) // calculates z-score
The cumulative flag determines which distribution function is used. If the flag is set to FALSE, the standard normal PDF is used. If the flag is set t
=NORM.S.DIST(1,TRUE)=0.8413
When the cumulative flag is set to FALSE, the standard normal PDF is used. The output of the CDF corresponds to the area under the PDF to the left of
=NORM.S.DIST(1,FALSE)=0.242