If 10 dice are rolled, what is the probability that their sum is within an interval?

1,847

Solution 1

One could calculate the probability that the sum is $k$ explicitly, and add up over our interval. Not so pleasant to do by hand, but a task easy to write a program for.

For a possibly crude approximation, note that $Y$ has mean $35$ and variance $10\dfrac{70}{24}$. Although $10$ is not at all a large number, one can approximate $Y$ by a normal with the same mean and variance. It may be useful to cross one's fingers.

Solution 2

You can look at my comment on this question. I don't have the spreadsheet on this computer, but it isn't hard to reproduce. Then sum for your favorite $A$ and $B$

Share:
1,847
connorbode
Author by

connorbode

Updated on November 16, 2020

Comments

  • connorbode
    connorbode over 2 years

    Let $X$ be a random variable representing the roll of one die.

    Then,

    $$E(X) = \dfrac{1+2+3+4+5+6}{6} = 3.5$$

    $$E(X^2) = \dfrac{1^2+2^2+3^2+4^2+5^2+6^2}{6} = \dfrac{91}{6}$$

    $$Var(X) = E(X^2)-E(X)^2 = \dfrac{91}{6} - \dfrac{49}{4} = \dfrac{70}{24}$$

    $$\sigma = \sqrt{Var(X)} = \sqrt{\dfrac{70}{24}} \approx 1.71$$

    Let $Y$ be a random variable representing sum of the rolls of $N$ dice and $S$ representing the set of possible outcomes.

    How can I find $P\{ A \leq Y \leq B\}$ for some $A,B \in S, A < B$?

  • connorbode
    connorbode over 10 years
    That person is probably doing the same homework assignment I am =) haha
  • Ross Millikan
    Ross Millikan over 10 years
    @somekindarukus: We have had three questions on throwing 10 dice recently. I gave a description of how to get the exact result on that question. To be fair, the others should be able to see that, too. The normal approximation is not too far off.
  • connorbode
    connorbode over 10 years
    Hm. I had tried searching for it at first but I couldn't find anything. Thaks anyways