2006 iTest Problems/Problem 33

Revision as of 18:34, 1 May 2020 by Duck master (talk | contribs) (created page with solution)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Six students sit in a group and chat during a complicated mathematical lecture. The professor, annoyed by the chatter, splits the group into two or more smaller groups. However, the smaller groups with at least two members continue to produce chatter, so the professor again chooses one noisy group and splits it into smaller groups. This process continues until the professor achieves the silence he needs to teach Algebraic Combinatorics. Suppose the procedure can be carried out in $N$ ways, where the order of group breaking matters (if A and B are disjoint groups, then breaking up group A and then B is considered different form breaking up group B and then A even if the resulting partitions are identical) and where a group of students is treated as an unordered set of people. Compute the remainder obtained when $N$ is divided by $2006$.

Solution

Let $\lambda$ be a partition of 6, and let $N_{\lambda}$ be the number of ways that a group of 6 students broken up according to the partition $\lambda$ can be split until all are silent. We know that $N_{1+1+1+1+1+1} = 1$ trivially. Then we calculate as follows:

$N_{2+1+1+1+1} = 1 * N_{1+1+1+1+1+1} = 1$ (because the group of two can be split in only one way). $N_{2+2+1+1} = 2 * N_{2+1+1+1+1} = 2$ (because the two groups of two can be split in two ways). $N_{3+1+1+1} = 3 * N_{2+1+1+1+1} = 3$ (because the group of three can be split in three ways). $N_{2+2+2} = 3 * N_{2+2+1+1} = 6$ (because the three groups of two can be split in three ways). $N_{3+2+1} = 3 * N_{2+2+1+1} + 1 * N_{3+1+1+1} = 3*2 + 1*3 = 9$ (because we can either split the group of three or the group of two). $N_{4+1+1} = 4 * N_{3+1+1+1} + 3 * N_{2+2+1+1} = 4*3 + 3*2 = 18$ (because we can either split the group of four into one and three or two and two). $N_{3+3} = 2 * 3 * N_{3+2+1} = 2*3*9 = 54$ (because there are two ways to pick the group to split and three ways to split that group). $N_{4+2} = 4 * N_{3+2+1} + 3 * N_{2+2+2} + 1 * N_{4+1+1} = 4*9 + 3*6 + 1*18 = 72$ (because we can split the group of four into three and one, or the group of four into two and two, or the group of two). $N_{5+1} = 5 * N_{4+1+1} + 10 * N_{3+2+1} = 5*18 + 10*9 = 180$ (because we can either split the group of five into four and one or three and two). $N_{6} = 6 * N_{5+1} + 15 * N_{4+2} + 10 * N_{3+3} = 6*180 + 15*72 + 10*54 = 2700$ (because we can either split the group of six into five and one, or four and two, or three and three).

Thusly, our answer is $2700$ modulo $2006$, which is $\boxed{694}$.