Way too big to do by hand, but we can still (barely) have the computer do the whole population for us.
In[117]:=
![dice = 0 ; Do[dice = Table[i + dice, {i, 1, 6}], {8}] ; dice = Flatten[dice] ;](../HTMLFiles/DiceStats_43.gif)
In[123]:=
![diceFreq = BinCounts[dice, {6, 48, 1}]](../HTMLFiles/DiceStats_44.gif)
Out[123]=

Now there's a true Normal distribution.
In[124]:=
![Histogram[diceFreq, FrequencyData -> True]](../HTMLFiles/DiceStats_46.gif)
![[Graphics:../HTMLFiles/DiceStats_47.gif]](../HTMLFiles/DiceStats_47.gif)
Out[124]=

The total population size should be
In[105]:=

Out[105]=

which is (just checking) the same as the number of entries in our computer generated population.
In[106]:=
![Length[dice]](../HTMLFiles/DiceStats_51.gif)
Out[106]=

And the population parameters are
In[110]:=
![μ8 = Mean[dice] // N](../HTMLFiles/DiceStats_53.gif)
Out[110]=

In[109]:=
![σ8 = StandardDeviationMLE[dice] // N](../HTMLFiles/DiceStats_55.gif)
Out[109]=

In[111]:=
![s8 = StandardDeviation[dice] // N](../HTMLFiles/DiceStats_57.gif)
Out[111]=

Converted by Mathematica (September 11, 2003)