I have been ripping my worksheet around for a few hours now and I could not find related problems out here.
I want to see how the Excel normal distribution density curve shows the 68-95-99 rule.
I made two columns:
In A: -5 to 5, Inc. 0,02
In B: =NORM.DIST(A2;0;1;FALSE)

where A2 is X, $0$ is the mean value, $1$ is Stdev, false to show density.

When I am trying to calculate the Stdev using =Stdev.P(B2:B502) or =Stdev.S(B2:B502), it shows a different number ($=0.135$), even though in B, the parameter is $1$.
IMO, the density curve shows the distributions where $63\%$ of all situations are mapped within $1$ sigma. After my parameters in function Norm.Dist from Column B, this should be reflected in function =Stdev…
Glad if somebody could help!
Best regards,
Nicola
The normal density curve is not the same as a normal random variable. You plotted 500 points along the normal density curve and then found the sample standard deviation of these values. But the graph only takes on values between 0 and 0.4, while a normal random variable can take on any positive or negative number, so the standard deviation of the density graph is not the standard deviation of the random variable. When you specify that your normal distribution has standard deviation 1, you mean that if you generated a lot of these random variables, their standard deviation would be close to 1. To get the probability that the random variable takes on values between two numbers, you have to look at the $\textit{area under the curve}$ between those two points on the density graph.
To show the 68-95-99 rule, use the cumulative distribution functions (which gives the probability that the random variable is less than a particular value, this is equivalent to the area under the density curve to the left of that same value). Then the cumulative function at 1 minus the cumulative function at -1 gives 0.68, i.e, 68% of the time the random variable will take on a value between -1 and 1.