Here are the possible outcomes from the roll of a single die. Each outcome is equally likely. This is our population.
In[8]:=

What is the mean of this population?
In[65]:=
![μ1 = Mean[oneDice] // N](../HTMLFiles/DiceStats_3.gif)
Out[65]=

In[19]:=
![Tr[oneDice]/Length[oneDice]](../HTMLFiles/DiceStats_5.gif)
Out[19]=

In[60]:=
![σ1 = StandardDeviationMLE[oneDice] // N](../HTMLFiles/DiceStats_7.gif)
Out[60]=

In[61]:=
![s1 = StandardDeviation[oneDice] // N](../HTMLFiles/DiceStats_9.gif)
Out[61]=

In[31]:=
![Histogram[oneDice]](../HTMLFiles/DiceStats_11.gif)
![[Graphics:../HTMLFiles/DiceStats_12.gif]](../HTMLFiles/DiceStats_12.gif)
Out[31]=

Is that last graph lying with statistics or what? Here's a more complicated way of asking for that, specifying that the counting is to be done in bins that are 1 wide from 0.5 to 6.5.
In[37]:=
![Histogram[BinCounts[oneDice, {0.5, 6.5, 1}], FrequencyData -> True]](../HTMLFiles/DiceStats_14.gif)
![[Graphics:../HTMLFiles/DiceStats_15.gif]](../HTMLFiles/DiceStats_15.gif)
Out[37]=

Converted by Mathematica (September 11, 2003)