[Math] If four dice are thrown, what is the probability that the sum of numbers thrown up will be 15? How about 16

diceprobability

If four dice are thrown, what is the probability that the sum of numbers thrown up will be 15? How about 16?

What's a good method of finding the answer? I know that overall there are 1296 possibilities.

Best Answer

There are $11$ different ways to throw 15: $$6621\\6531\\6522\\6441\\6432\\6333\\5541\\5532\\5442\\5433\\4443$$ Now we have 4 types of throws (in brackets there are numbers of occurcences): $$ABCD (2)\\ABCC(7)\\ABBB(2)\\AABB(0)\\AAAA(0)$$ Where $A,B,C,D$ are different numbers. Now let's compute number of possible permutations of the above types (with positive numbers of occurences):

  • $P_{ABCD}=4!$
  • $P_{ABCC}= 4\cdot 3$
  • $P_{ABBB}=4$

Thus there are $$X=2\cdot4! + 7\cdot 4\cdot 3 + 2\cdot 4 = 140 $$ events that lead to sum $15$.

Probabiblity is then equal to

$$P(15)=\frac{140}{6^4}=\frac{35}{324}$$

Related Question