Finding expected number of games played by player 1.

expected value

There are 4 players in the game. First player 1 plays with player 2, with loser exiting the game. Next winner of previous game plays with player 3, with loser exiting. Further, winner of previous game plays with player 4, and the winner of this game is tournament victor. Given that a game between players $i$ and $j$ is won by player $i$ with probability ${i \over {i + j}}$.

Find expected number of games played by player 1, [and player 3]. [EDIT]

Approach: Player 1 if exits in first round. He plays 1 match with probability $ {1\over {1+2}}$ = $1 \over 3$. Similarly, if exits in round two, then plays 2 matches with probability, (wins first round and then second round)${ 1 \over 12} $. Now for playing 3 matches, probability = ${1 \over 60}$.
So, weighted mean or expected value is,
$E(player 1)$ = $1 \times {1 \over 3} + 2 \times {1 \over {12}} + 3 \times {1 \over {60}} = {{11} \over {20}}$.
But solution is incorrect.

Best Answer

In order to play exactly one game he needs to loose the first one which happens with probability $\frac{2}{3}$. To play exactly $2$ games he needs to win the first one and loose the second one, so $\frac{1}{3}\cdot\frac{3}{4}$. Now compute the chance for playing exactly $3$ (where it doesn't matter whether he wins or looses the third game) in a similar way and you should get the correct answer.

For player 3 you can consider the tournament as a whole. There are always 3 games played in total. First game is always between 1 and 2, so player 3 will never play it. Second game is the winner from game 1 against player 3 so he will always play it. To play in game 3 he needs to win game 2. This happens either if player 1 wins game 1 and looses in game 2 or if player 2 wins game 1 and looses in game 2. Compute the probability for these two cases and add 1 for playing game 2 will give you the expected number of games played by player 3.

Related Question