|
1/// possible game sequence are- (a) AB, AC or AB, CA, BC, AB, AC or similarly cont.......
probability= 1/2^2 +1/2^5 + .......=2/7
(b) BA, CB, AC, AB or BA, CB, AC, BA, CB, AC, AB or .........
probability= 1/2^4 + 1/2^7 +.........=1/14
so total prob= 2/7 + 1/14 = 5/14
NOTE-in game sequence FIRST letter indicate WINNING of that player
for e.g- AB, AC means A wins first game and also second game.
2/// possible game sequence are- (a) AB, CA, CB or AB, CA, BC, AB, CA, CB or .............
prob= 1/2^3 + 1/2^6 + ..........=1/7
(b) BA, CB, CA or BA, CB, AC, BA, CB, CA or ............
prob= 1/2^3 + 1/2^6 + ........=1/7
so total prob=1/7 + 1/7 =2/7
|