返回题库

AIME 2001 II · 第 11 题

AIME 2001 II — Problem 11

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Club Truncator is in a soccer league with six other teams, each of which it plays once. In any of its 6 matches, the probabilities that Club Truncator will win, lose, or tie are each 13\frac {1}{3}. The probability that Club Truncator will finish the season with more wins than losses is mn\frac {m}{n}, where mm and nn are relatively prime positive integers. Find m+nm + n.

解析

Solution 1

Note that the probability that Club Truncator will have more wins than losses is equal to the probability that it will have more losses than wins; the only other possibility is that they have the same number of wins and losses. Thus, by the complement principle, the desired probability is half the probability that Club Truncator does not have the same number of wins and losses.

The possible ways to achieve the same number of wins and losses are 00 ties, 33 wins and 33 losses; 22 ties, 22 wins, and 22 losses; 44 ties, 11 win, and 11 loss; or 66 ties. Since there are 66 games, there are 6!3!3!\frac{6!}{3!3!} ways for the first, and 6!2!2!2!\frac{6!}{2!2!2!}, 6!4!\frac{6!}{4!}, and 11 ways for the rest, respectively, out of a total of 363^6. This gives a probability of 141/729141/729. Then the desired answer is 11417292=98243\frac{1 - \frac{141}{729}}{2} = \frac{98}{243}, so the answer is m+n=341m+n = \boxed{341}.

Solution 2

At first, it wins 66 games, only one way.

Secondly, it wins 55 games, the other game can be either win or loss, there are (65)2=12\binom{6}{5}\cdot 2=12 ways.

Thirdly, it wins 44 games, still the other two games can be either win or loss, there are (64)22=60\binom{6}{4}\cdot 2^2=60 ways.

Fourthly, it wins 33 games, this time, it can't lose 33 games but other arrangements of the three non-winning games are fine, there are (63)(231)=140\binom{6}{3}\cdot (2^3-1)=140 ways.

Fifth case, it wins 22 games, only 0/10/1 lose and 4/34/3 draw is ok, so there are (62)(1+(41))=75\binom{6}{2}(1+\binom{4}{1})=75 cases.

Last case, it only wins 11 game so the rest games must be all draw, 11 game.

The answer is 1+12+60+140+75+636=98243\frac{1+12+60+140+75+6}{3^6}=\frac{98}{243} leads to 341\boxed{341}

~bluesoul

Solution 3

This problem is symmetrical, and we should probably take advantage of that. We have that:

1=P(# of wins>losses)+P(# of wins<losses)+P(# of wins=losses)=2P(# of wins>losses)+P(# of wins=losses)\begin{aligned} 1 &= P(\#\text{ of wins} > \text{losses}) + P(\#\text{ of wins} < \text{losses}) + P(\#\text{ of wins} = \text{losses}) \\ &= 2P(\#\text{ of wins} > \text{losses}) + P(\#\text{ of wins} = \text{losses}) \end{aligned} Now, all we need to do is find the probability that the number of wins is equal to the number of losses, and then it's simple linear equations from there! We have 4 cases. We can let W/L/TW/L/T be the format for these cases. For example, 3/2/13/2/1 would mean 3 wins, 2 losses, and 1 tie. Now, we begin our casework.

C1:3/3/0(63)(13)6=20729C_1: 3/3/0 \Longrightarrow \binom{6}{3} \cdot \left(\frac{1}{3}\right)^6 = \frac{20}{729} C2:2/2/2(62)(42)(13)6=90729C_2: 2/2/2 \Longrightarrow \binom{6}{2}\binom{4}{2} \cdot \left(\frac{1}{3}\right)^6 = \frac{90}{729} C3:1/1/4(64)2(13)6=30729C_3: 1/1/4 \Longrightarrow \binom{6}{4} \cdot 2 \cdot \left(\frac{1}{3}\right)^6 = \frac{30}{729} C4:0/0/6(13)6=1729C_4: 0/0/6 \Longrightarrow \left(\frac{1}{3}\right)^6 = \frac{1}{729} Summing these up we get 141729=47243\dfrac{141}{729} = \dfrac{47}{243}. Now, we have 2x+47243=12x + \dfrac{47}{243} = 1, where x=P(# of wins>losses)x = P(\#\text{ of wins} > \text{losses}). Solving, we get x=98243341x = \dfrac{98}{243} \Longrightarrow \boxed{341}

-jb2015007