Standard deviation of a dice roll?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 11K views
moonman239
Messages
276
Reaction score
0
Let's say I have a big, 50-sided die, with values ranging from 1-50. I want to find the exact standard deviation of the dice roll by hand. I would like to avoid subtracting the mean from each possible value, if at all possible.

How do I do that?
 
Physics news on Phys.org
The most direct way is to get the averages of the numbers (first moment) and of the squares (second moment). The variance is the second moment minus the square of the first moment. The moments are (n+1)/2 and (n+1)(2n+1)/6 assuming a fair die. (Your n=50).
 
An alternative formula for the variance (the square of the s.d.) is [tex]\mbox{var}(X)=E[X^2]-E[X]^2[/tex]. The derivation can be found on wikipedia. Use the formulas provided by mathman above to find the value.
 
dalcde said:
An alternative formula for the variance (the square of the s.d.) is [tex]\mbox{var}(X)=E[X^2]-E[X]^2[/tex]. The derivation can be found on wikipedia. Use the formulas provided by mathman above to find the value.
Your formula is exactly what I posted in words.
 
Yes, but I found the word formula a bit difficult to comprehend.