I'm trying to use NORMDIST
function in Excel to create a bell curve, but the output is strange.
My mean is 0,0000583
and standard deviation is 0,0100323
so when I plug this to the function NORMDIST(0,0000583; 0,0000583; 0,0100323; FALSE)
I expect to get something close to 0,5
as I'm using the same value as the mean probability of this value should be 50%
, but the function gives an output of 39,77
which is clearly not correct.
Why is it like this?
It is returning the probability density function whereas I think you want the cumulative distribution function (so try TRUE in place of FALSE) ref.
A probability cannot have values greater than 1, but a density can.
The integral of the entire range of a density function is equal 1, but it can have values greater than one in specific interval. Example, a uniform distribution on the interval [0, ½] has probability density f(x) = 2 for 0 ≤ x ≤ ½ and f(x) = 0 elsewhere. See below:
=NORMDIST(x, mean, dev, FALSE)
returns the density function. Densities are probabilities per unit. It is almost the probability of a point, but with a very tiny range interval (the derivative in the point).shg's answer here, explain how to get a probability on a given interval with NORMIDIST and also in what occasions it can return a density greater than 1.
which was your case.
This is an amazing answer on Cross Validated Stack Exchange (statistics) from a moderator (whuber), that addresses this issue very thoughtfully.