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.