"Suppose $n$ dice are rolled and their sum recorded; let $P_m(n)$ be the probability that this sum is $m$. Let $P(n) = \displaystyle \max_m P_m(n)$. Prove that $P(n) \to 0$ as $n \to \infty$."
This is a question I came up with myself (although I doubt it's original), and figured there would be a readily conceivable, slick solution even to someone who's not well versed in probability/statistics. Alas after playing with generating functions and the ilk for a little, I'm left nowhere better than where I started... which is, "This is almost certainly true by the Central Limit Theorem." But again, almost no background in statistics, so I would like a more basic answer if possible.
Extracting/merging answers from this question and this one, there are two related approaches
As explained in the document, these are called polynomial coefficients, or more often multinomial coefficients.
$$ (x_1 + x_2 + \cdots + x_m)^n = \sum_{k_1+k_2+\cdots+k_m=n} {n \choose k_1, k_2, \ldots, k_m} \prod_{t=1}^m x_t^{k_t}\,$$ where $${n \choose k_1, k_2, \ldots, k_m} = \frac{n!}{k_1!\, k_2! \cdots k_m!}$$
We can use this facts to deduce that $P(n)$ tends to $0$. However there might be a smarter/easier way to do so without computing polynomial coefficients.