In a round-robin tournament with 6 teams, each team plays one game against each other team, and each game results in one team winning and one team losing. At the end of the tournament, the teams are ranked by the number of games won. What is the maximum number of teams that could be tied for the most wins at the end of the tournament?
- A)
- B)
- C)
- D)
- E)
Answer
D
Key insight
Fifteen wins cannot split evenly among six teams, but five teams with 3 wins each works: all beat a winless sixth and split their own games evenly.
Solution
There are games, and each produces exactly one win, so the six win totals add to .
Could all six teams tie? Then each would have wins, not an integer. So at most teams can share the top spot.
Five is achievable. Call the teams and . Let lose all five of its games, which gives each one win. The play games among themselves; arrange them around a circle and let each team beat the next two teams clockwise and lose to the two preceding it. Each then wins and loses of those games. Every finishes with wins, finishes with , and the five teams are tied for the most wins.
The answer is .
Why this works
Tournament "maximum tie" problems are two-step arguments: a counting bound (total wins is fixed and must divide evenly among tied teams) and an explicit schedule that meets the bound. The circular "beat the next teams" pattern is the standard way to make an odd number of teams all finish with equal records.
The trap
Answering 6 without checking that 15 wins cannot be shared equally by 6 teams, or answering 3 or 4 for lack of an explicit construction.
Common mistakes
- Answering 6 without checking that 15 wins cannot be shared equally by 6 teams, or answering 3 or 4 for lack of an explicit construction.
- Trying to make the five tied teams win games each against one another (impossible, since only such games exist) and giving up on .
Techniques
Bound the quantity above/below or estimate to pin it down · Consider the largest/smallest element or boundary case