A group of 9 kids want to hold a swimming competition. To start, each swimmer is given a rank from 1 to 9, with 1 being the fastest swimmer of the group and 9 being the slowest, without repetition.
Let swimmers 1, 2 and 3 be on Team , , and , respectively. These three swimmers each then pick two more kids for their team, making teams of 3.
The competition works as follows:
First, each team will face off against each other individually, meaning Team A will face Team B, Team B will face Team C, and Team C will face Team A. Afterwards, all three teams will compete against each other at the same time. Each of these meets are scored separately and don't affect one another.
Each meet consists of 3 races. For each race, each team randomly selects a swimmer from their team who has yet to swim a race.
1 point is awarded to the team with the winning swimmer from each race, and no points are given for 2nd and 3rd place.
Assume that a faster ranked swimmer will always beat a slower ranked swimmer.
At first it seems that the teams are picked fairly. In fact, the teams are picked such that Team A is more likely to beat Team B, Team B is more likely to beat Team C, and Team C is more likely to beat Team A! However, while a majority of the time the meet between all three teams will come out in a tie, one team has a higher probability to win than the other two, depending how each team picked their swimmers. If the probability of each team winning exactly 1 race each in the final meet is , then the team that is most likely to win has swimmers with the rankings , , and . What is ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
There are 2 possible arrangements of Teams A, B and C such that A is likely to beat B, B is likely to beat C, and C is likely to beat A:
Arrangement 1: A = { 1 , 5 , 9 } ; B = { 2 , 6 , 7 } ; C = { 3 , 4 , 8 }
Arrangement 2: A = { 1 , 6 , 8 } ; B = { 2 , 4 , 9 } ; C = { 3 , 5 , 7 }
My solution involved using a Java Program to help me list out all the possibilities, and it led me to the following probabilities:
Arrangement 1:
Team 1: 48/216 = 2/9
Team 2: 24/216 = 1/9
Team 3: 24/216 = 1/9
Ties: 120/216 = 5/9
Arrangement 2:
Team A: 24/216 = 1/9
Team B: 48/216 = 2/9
Team C: 18/216 = 1/12
Ties: 126/216 = 7/12
As you can see, Arrangement 2 leads to the desired number of ties. In this arrangement, Team B is most likely to win, therefore our answer must be 2 × 4 × 9 = 7 2 . If anyone has a more intuitive approach, feel free to post your solution!