Number of winners in a tournament

graph theoryinduction

Suppose there are $2^n$ people in a tournament, and each pair plays one game. Each game has one winner and one loser. How does one show that the winner of the tournament (player with most wins) has at least $2^{n-1}$ wins?

Clearly there are $2^n\choose 2$ $= 2^{n-1}(2^n-1)$ total games being played. Each player plays $2^{n}-1$ games. How can i bound the #of wins $k$ of the winner? By def $k$ is more than the number of wins of any other player, hence he is winner

Best Answer

Suppose the winner has less than $2^{n-1}$ wins. Then the number of wins of the winner are atmost $2^{n-1}-1$. Hence, the number of wins of other players are also atmost $2^{n-1}-1$. Hence, the total number of wins in the tournament are atmost $2^n(2^{n-1}-1) = 2^{n-1}(2^n-2)$, which is less than the number of games played, hence contradiction.