The sum of two dice can be anwhere from 2 to 12. Since there are 6 ways the first dice can come up, and 6 ways for the second, there are 36 equally likely outcomes. They are
In[26]:=
![twoDice = Flatten[Table[i + j, {i, 6}, {j, 6}]]](../HTMLFiles/DiceStats_17.gif)
Out[26]=

In[27]:=
![Histogram[twoDice]](../HTMLFiles/DiceStats_19.gif)
![[Graphics:../HTMLFiles/DiceStats_20.gif]](../HTMLFiles/DiceStats_20.gif)
Out[27]=

In[35]:=
![Histogram[BinCounts[twoDice, {1.5, 12.5, 1}], FrequencyData -> True]](../HTMLFiles/DiceStats_22.gif)
![[Graphics:../HTMLFiles/DiceStats_23.gif]](../HTMLFiles/DiceStats_23.gif)
Out[35]=

In[63]:=
![μ2 = Mean[twoDice] // N](../HTMLFiles/DiceStats_25.gif)
Out[63]=

In[67]:=
![σ2 = StandardDeviationMLE[twoDice] // N](../HTMLFiles/DiceStats_27.gif)
Out[67]=

In[68]:=
![s2 = StandardDeviation[twoDice] // N](../HTMLFiles/DiceStats_29.gif)
Out[68]=

Converted by Mathematica (September 11, 2003)