CombinatoricsDifficulty 5.5AIME, harderProve itUnited States
Problem:
Yannick is playing a game with 100 rounds, starting with 1 coin. During each round, there is a n% chance that he gains an extra coin, where n is the number of coins he has at the beginning of the round. What is the expected number of coins he will have at the end of the game?
Solution
Solution:
Let Xi be the random variable which is the number of coins at the end of round i. Say that X0=1 for convenience. Fix i>0 and some positive integer x. Conditioning on the event Xi−1=x, there are only two cases with positive probability. In particular, Pr[Xi=x+1∣Xi−1=x]=100x and Pr[Xi=x∣Xi−1=x]=1−100x Therefore E[Xi]=====x>0∑x⋅Pr[Xi=x]x>0∑x⋅((1−100x)Pr[Xi−1=x]+100x−1Pr[Xi−1=x−1])x>0∑xPr[Xi−1=x]−1001x>0∑xPr[Xi−1=x−1]+1001x>0∑x2Pr[Xi−1=x−1]−1001x>0∑x2Pr[Xi=x]10099E[Xi−1]−1001+501E[Xi−1]+1001100101E[Xi−1]. (A different way to understand this is that no matter how many coins Yannick has currently (as long as he does not have more than 100 coins, which is guaranteed in this problem), the expected number of coins after one round is always 1.01 times the current number of coins, so the expected value is multiplied by 1.01 each round.) Therefore E[X100]=(100101)100E[X0]=1.01100
Want a route through all this instead of an archive? The track
puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.
Source: MathNet,
licensed CC-BY-4.0.
Statement reproduced verbatim; metadata (topic, difficulty) added by this project.