The number of possibilities get bigger, but the idea is the same.  Now there are  equally likely outcomes.  The smallest is 1+1+1=3 and the largest is 6+6+6=18.  We can let the computer generate the list.
equally likely outcomes.  The smallest is 1+1+1=3 and the largest is 6+6+6=18.  We can let the computer generate the list. 
In[41]:=
![threeDice = Flatten[Table[i + j + k, {i, 6}, {j, 6}, {k, 6}]]](../HTMLFiles/DiceStats_32.gif)
Out[41]=

In[42]:=
![Histogram[threeDice]](../HTMLFiles/DiceStats_34.gif)
![[Graphics:../HTMLFiles/DiceStats_35.gif]](../HTMLFiles/DiceStats_35.gif)
Out[42]=

This histogram is starting to look like a bell curve - which is exactly what its heading towards.
In[69]:=
![μ3 = Mean[threeDice] // N](../HTMLFiles/DiceStats_37.gif)
Out[69]=

In[71]:=
![σ3 = StandardDeviationMLE[threeDice] // N](../HTMLFiles/DiceStats_39.gif)
Out[71]=

In[75]:=
![s3 = StandardDeviation[threeDice] // N](../HTMLFiles/DiceStats_41.gif)
Out[75]=

Converted by Mathematica (September 11, 2003)