Properly Ranking Teams

Logic Level 4

Single Elimination Tournament Single Elimination Tournament

In a Single Elimination Tournament , teams are eliminated if they lose and the top 2 are determined with the finals while the 2nd runner up is determined with a game between the losers of the semi-finals.

However, this system is known to not properly rank teams. For instance, the 2nd best team should be winning 2nd but they can be eliminated in the first round if they played against the best team and hence not win anything.

Say there are 11 11 teams competing. You are tasked to arrange games among the teams in order to accurately rank all 11 11 teams based on their ability. You are allowed to change the teams taking part in future games based on results of the previous games. Assume that only 1 game is required to determine which team is better (E.g. if Team 1 and Team 2 play against each other and Team 2 wins, Team 2 is better at the game than Team 1), and that a game consists of 2 2 teams and there will always be a winner, never a draw.

What is the minimum number of games that you have the arrange in order to guarantee that you can rank all 11 11 teams?


The answer is 26.

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.

1 solution

Julian Poon
May 3, 2020

We can establish a lower bound for the number of games needed. Say there are n n games needed. The number of possible outcomes for all n n games are 2 n 2^n . Let the set of all outcomes of the games be G , G = 2 n G, |G| = 2^n . There are also 11 ! = 39916800 11! = 39916800 number of ways to rank the 11 11 teams. Let the set of possible rankings be R , R = 11 ! R, |R| = 11! .

Now, there must exist an element g G g \in G such that from g g we can deduce any ranking r R r \in R of the teams. In other words, for any r R r \in R , there must exist a g G g \in G such that g g implies r r .

Hence G R |G| \ge |R| , 2 n 11 ! 2^n \ge 11! . This makes our lower bound to be n = 26 n=26 .

To prove that n = 26 n=26 is indeed possible, we can construct a solution with 26 26 games. We can reframe this question into a question involving sorting algorithms: Construct a sorting algorithm that can sort 11 11 elements with 26 26 comparisons. The Merge-insertion Sort achieves this and is therefore a valid construction. Hence it is possible to rank the 11 11 teams in 26 26 games.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...