Turoksj
The problem here is in the definition of what the numbers mean
Using a simple example with 4 periods you have values of 0.25,0.5,0.75 and 1
This can be modeled in a Normal (Bell) curve using a mean of 0.5
But what is the standard deviation (SD)?
typically people will use either 2 SD's in which 68% of the population will fall, 3 SD's in which 95% of the population will fall or 4 SD's in which 99.7% of the population will fall to define the range around the mean.
So If I use a variable to calculate the SD's we have a table that looks like:
[pre]
Code:
SD= x % < x
2 SD's 0.5/2 0.125 6.68%
3 SD's 0.5/3 0.125 1.22%
4 SD's 0.5/4 0.125 0.13%
[/pre]
So the Shape of the Normal Curve which is defined by the SD is important.
Your original data showed two different curves
for n=8 you need to have a SD = 0.22798 to get the value of 5% for 0.125
for n=12 you need to have a SD = 0.22798 to get the value of 3% for 0.08333
Unfortunately your data doesn't provide any measure of the SD and so the above approximations have been made to make the curves fit.
Put simply a Bell curve is an open ended curve and it is up to us to define what % of data that should fit within a given spread around the mean.
I Hope that helps explain the issue a little bit.