The premise of the problem is based on a game that's played with n people where each round has a coin flip to determine which of two players (who are chosen in sequential and circular order) wins that round - e.g. in a 3 person game, round 1 is player 1 vs player 2, round 2 is player 2 vs player 3, round 3 is player 3 vs player 1, etc.. Once a person wins two times in a row, they win the whole game.
The problem itself involves the probability Pn(k), where n = number of players and k = the target player to win the whole game. Examples given include: P3(1) = 12/49 and P6(2) = 368/1323, where each probability is a reduced fraction.
I attempted to find P3(1) myself by writing out a timeline with chances for the given events, like so:
== Round 1 == Player 1 wins: 1/2 Player 2 wins: 1/2 Game Over : 0 == Round 2 == Player 2 wins: 1/2 Player 3 wins: 1/2 Game Over : 1/4 (Winner=Player 2) == Round 3 == Player 3 wins: 1/2 Player 1 wins: 1/2 Game Over : 1/4 (Winner=Player 3) == Round 4 == Player 1 wins: 1/2 Player 2 wins: 1/2 Game Over : 1/4 (Winner=Player 1)And since I want game over in rounds 2 and 3 to not happen, I took the inverse of those probabilities (i.e. 3/4) and the probability that the game ended in round 4 (i.e. 1/4) and found the product, which came out to be 9/64...
Am I missing something about the problem? Or is it a problem with my (admittedly limited) knowledge of probability theorem? Thanks for any help that you guys can provide
