返回题库

AIME 2005 II · 第 2 题

AIME 2005 II — Problem 2

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

A hotel packed breakfast for each of three guests. Each breakfast should have consisted of three types of rolls, one each of nut, cheese, and fruit rolls. The preparer wrapped each of the nine rolls and once wrapped, the rolls were indistinguishable from one another. She then randomly put three rolls in a bag for each of the guests. Given that the probability each guest got one roll of each type is mn,\frac mn, where mm and nn are relatively prime integers, find m+n.m+n.

解析

Solution

Solution 1

Use construction. We need only calculate the probability the first and second person all get a roll of each type, since then the rolls for the third person are determined.

  • Person 1: 963987=928\frac{9 \cdot 6 \cdot 3}{9 \cdot 8 \cdot 7} = \frac{9}{28}

  • Person 2: 642654=25\frac{6 \cdot 4 \cdot 2}{6 \cdot 5 \cdot 4} = \frac 25

  • Person 3: One roll of each type is left, so the probability here is 11.

Our answer is thus 92825=970\frac{9}{28} \cdot \frac{2}{5} = \frac{9}{70}, and m+n=79m + n = \boxed{79}.

Solution 2

Call the three different types of rolls as A, B, and C. We need to arrange 3As, 3Bs, and 3Cs in a string such that A, B, and C appear in the first three, second three, and the third three like ABCABCABC or BCABACCAB. This can occur in (3!1!1!1!)3=63=216\left(\frac{3!}{1!1!1!}\right)^3 = 6^3 = 216 different manners. The total number of possible strings is 9!3!3!3!=1680\frac{9!}{3!3!3!} = 1680. The solution is therefore 2161680=970\frac{216}{1680} = \frac{9}{70}, and m+n=79m + n = \boxed{79}.

Solution 3

The denominator of m/n is equal to the total amount of possible roll configurations given to the three people. This is equal to (93)(63){9 \choose 3}{6 \choose3} as the amount of ways to select three rolls out of 9 to give to the first person is (93){9 \choose 3}, and three rolls out of 6 is (63){6 \choose3}. After that, the three remaining rolls have no more configurations.

The numerator is the amount of ways to give one roll of each type to each of the three people, which can be done by defining the three types of rolls as x flavored, y flavored, and z flavored.

xxx, yyy, zzz

So you have to choose one x, one y, and one z to give to the first person. There are 3 xs, 3 ys, and 3 zs to select from, giving 333^3 combinations. Multiply that by the combinations of xs, ys, and zs for the second person, which is evidently 232^3 since there are two of each letter left.

(278)/(93)(63)(27*8)/{9 \choose 3}{6 \choose3} simplifies down to our fraction m/n, which is 9/709/70. Adding them up gives 9+70=799 + 70 = \boxed{79}.

Solution 4

Let the objects be A1A_1, A2A_2, A3A_3 with similar labeling for BB and CC. There are 9!9! ways to order these nine objects in a line.

We then label three "zones" corresponding to the three people's meals as the first, second, and third objects in the line corresponding to the first zone, the fourth, fifth, and sixth to the second zone, and the remainder to the third zone. Each zone must contain one of each AA, BB, and CC. There are 66 ways to place the three AA rolls in three different zones, and the same goes for BB and CC. In each zone, there are 66 ways to order the three rolls, so there are in total 666^6 legal orderings.

Thus the desired probability is 669!=970\frac{6^6}{9!}=\frac{9}{70}, so the answer is 9+70=799+70=\boxed{79}.

~eevee9406