You have $100 and decide to go to a casino. At the casino you will repeatedly bet $1.00 on a fair game with 1:1 odds. You will continue playing until either you run out of money or you have $ N . If the probability that you lose all your money is 3 1 what is N ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
This answer only holds if you are considering a very large or even infinite number of games though, which does not hold in the event that you lose $100 because you would then terminate your betting.
This problem requires a bit of creative thinking to simplify, but this makes the problem much easier to handle. Letting the probability of losing all your money when you have $n be P n , a recurrence relation can be constructed, where P n = 2 1 ( P n − 1 + P n + 1 ) . This comes from the fact that the probability of reaching $n from $(n-1) and $(n+1) by the next game are both 2 1 . Rearranging this relation gives P n + 1 = 2 P n − P n − 1 .
Solving this relation yields P n = A − B n , where A and B are arbitrary constants. Solving for A and B using the conditions P 0 = 1 and P N = 0 , the relation becomes P n = 1 − N n . Given that the probability of losing all your money at $100 is 3 1 , P 1 0 0 = 1 − N 1 0 0 = 3 1 . Solving this gives N = 1 5 0 .
Problem Loading...
Note Loading...
Set Loading...
This is a problem where it is very difficult to think about all the different orders in which things could happen. It could take a very long time in order for you to ever reach $ N or run out money. However, we can leverage linearity of expectation and the fact that each game is fair. Because in each gamble, the expected value of how much money you'll make is 0, playing any number of times doesn't change the fact that on average, you neither gain nor lose money.
Thus, we know that the expected value of the total gain/loss is 0. With probability 3 1 we will lose $100, and with probability 3 2 we will gain some amount of money n . Therefore, we can write the following equation
expected gain = 0 = ( − 1 0 0 ) 3 1 + 3 2 n ⟹ n = 5 0
If we stand to gain $50, we must be waiting until we have a value of N = 1 0 0 + n = $ 1 5 0 to stop playing.