Given the identity $S(n, n - 3) = a \binom n 4 + b \binom n 5 + c \binom n 6$, find $a, b, c$. $S(n, k)$ denotes a Stirling number of the second kind, i.e., the number of ways to place $n$ labeled balls into $k$ non-labeled non-empty boxes.
My reasoning is the following: $S(n, n - 3)$ gives the number of ways to place $n$ labeled balls into $n - 3$ non-labeled non-empty boxes (as per the definition of $S(n, k)$). This can be accomplished under the following scenarios:
- $3$ empty boxes, one of the non-empty boxes contains $4$ balls,
- $3$ empty boxes, one of the non-empty boxes contains $3$ balls, another one contains $2$ balls,
- $3$ empty boxes, three of the non-empty boxes contain $2$ balls each,
and all remaining boxes contain $1$ ball each. The binomial coefficients above correspond to the three given scenarios. In order to find $a, b, c$, we need to find in how many ways each scenario can occur. So:
- The $4$ balls can be put in only $1$ way, giving $a = 1$;
- The $5$ balls can be put in $\binom 5 3$ ways, giving $b = 10$;
- The $6$ balls can be put in $\binom 6 2 \binom 4 2$ ways, giving $c = 90$.
However, it would seem that $c = 15$ and I'm overcounting. Can anyone spot the mistake (or perhaps I'm doing this completely wrong)?
The basic idea is fine, but the details for $c$ are not: you’re overcounting. What you want is the number of ways to divide $6$ objects into $3$ pairs. Temporarily number the objects $1$ through $6$. There are $5$ ways to choose a mate for object $1$. Once the pair containing object $1$ has been decided, there are $3$ ways to choose a mate for the smallest-numbered object remaining. And once that’s been done, all $3$ pairs have actually been determined, so the desired coefficient is $5\cdot3=15$.
There’s more discussion of counting ways to pair up objects at this question and its answers