From Raven Deerwater comes a metapuzzle of coin flipping:
If you flip three (independent) fair coins, there are four possible outcomes:
You can get three heads, with a probability of 1/8.
You can get two heads, with a probability of 3/8.
You can get one heads, with a probability of 3/8.
You can get zero heads, with a probability of 1/8.
Now suppose you are flipping three coins, and you do this eight times. What is the probability that you’ll get exactly one occurrence of three heads, three occurrences of two heads, three occurrences of one heads, and one occurrence of zero heads? (Note that these eight occurrences can happen in any order.)
$$= \dfrac{3^6 \cdot 5 \cdot 7}{2^{19}} = \dfrac{25515}{524288} \approx 4.867\%$$
Again, suppose you are flipping three fair and independent coins, and you do this eight times. Among the four possible outcomes (three heads, two heads, one heads, zero heads), the outcome that happens to occur most frequently—but, importantly, I’m not saying which one this is!—occurs a times. The next most frequent outcome occurs b times. The next most frequent after that occurs c times. And the least frequent occurs d times. Note that a+b+c+d = 8, and that a ≥ b ≥ c ≥ d. (Yes, equalities are allowed here).
Which ordered quadruple (a, b, c, d) is most likely?
There are 15 ordered quadruples of $(a,b,c,d)$:
I then ran code on each ordered quadruple:
The plot below summarizes the findings:
$(4, 3, 1, 0)$ is most likely, occuring about $17.5\%$ of the time.