Problem:
Suppose a lottery exists in which your luck increases as you play. The probability of winning a prize starts at 1%. After every unsuccessful attempt, the probability of winning increases by 1% from your previous odds (so 1% becomes 2%). When a prize is won, the chance of winning is reset to 1%. What is the expected number of prizes that you will receive after 100 uses?
What we know so far:
So far we have tried recurrence formulas but failed to get a closed form answer.
Through a python script and brute forcing we have calculated the answer to be 7.8608…
We have also tried by viewing 1% as 1/100, we added up the fractions: 1/100 + 2/100 + 3/100... + 14/100, which yielded a sum of 105/100. Based on this calculation, the probability of winning appears to exceed 100%. To determine the number of times this outcome would occur within 100 attempts, we divided 100 by 14. But we again found a problem as we ended up with a sum of 105/100.
All of our answers lie closely to each-other but we have yet to find a concrete answer
We would appreciate any help that we can get!
Using the following python script:
we get that the exact answer is
7.86080126403229668198182908097394362384354574898764667238115242755521947164335122692038436352382356040222738777625219891364911130702970910977870565447613758476042568092806020045109899810694869084004791. However, we have yet to get insight as to why this is.