The question is as follows:
A round-robin tournament is being held with n tennis players; this means that every player will play against every other player exactly once.
(a) How many possible outcomes are there for the tournament (the outcome lists out who won and who lost for each game)?
(b) How many games are played in total?
I attempted to solve part a.
I thought that for a game involving 4 players: {A,B,C,D}, there would be 12 games. I made a few sets as follows listing the winner of the match and then the loser of the match:
{Winner, Loser}
{A,B}
{B,A}
{A,C}
{C,A}
{A,D}
{D,A}
{B,C}
{C,B}
{B,D}
{D,B}
{C,D}
{D,C}
From what I saw in the sets, the number of games each player plays reduces. For example, A does not play B in the sets with B. Also, there are two possible outcomes for each game. So, I thought the total possible outcomes is this:
3*(2C1)+2*(2C1)+1*(2C1)
The (2C1) is meant to be the two possible outcomes for each game. 3,2, and 1 are there for the games each player plays. So A has 6 possible outcomes, B has 4, C has 2 possible outcomes.
This gave me the summation: [math]\sum_{n=0}^{n-1} n*2C1[/math]
This sum is my final answer, but the actual answer is [math]2^{(n*(n-1))/2}[/math]
Where is my logic going wrong? I do not understand why my equation is wrong, and while I try to make sense of it I think I'm missing something important.
A round-robin tournament is being held with n tennis players; this means that every player will play against every other player exactly once.
(a) How many possible outcomes are there for the tournament (the outcome lists out who won and who lost for each game)?
(b) How many games are played in total?
I attempted to solve part a.
I thought that for a game involving 4 players: {A,B,C,D}, there would be 12 games. I made a few sets as follows listing the winner of the match and then the loser of the match:
{Winner, Loser}
{A,B}
{B,A}
{A,C}
{C,A}
{A,D}
{D,A}
{B,C}
{C,B}
{B,D}
{D,B}
{C,D}
{D,C}
From what I saw in the sets, the number of games each player plays reduces. For example, A does not play B in the sets with B. Also, there are two possible outcomes for each game. So, I thought the total possible outcomes is this:
3*(2C1)+2*(2C1)+1*(2C1)
The (2C1) is meant to be the two possible outcomes for each game. 3,2, and 1 are there for the games each player plays. So A has 6 possible outcomes, B has 4, C has 2 possible outcomes.
This gave me the summation: [math]\sum_{n=0}^{n-1} n*2C1[/math]
This sum is my final answer, but the actual answer is [math]2^{(n*(n-1))/2}[/math]
Where is my logic going wrong? I do not understand why my equation is wrong, and while I try to make sense of it I think I'm missing something important.