Calculating Probability of Winning with Gambling Game

wuid
Messages
38
Reaction score
0
In a gambling game , you can win 1$ in each round with probability 0.6 or lose 2$ in probability 0.4. suppose you start with 100$.
find the probability that after 10 rounds you have between 93 to 107 dollars.

i am not sure how to start the solution,

thanks,
 
Physics news on Phys.org
Well, one obvious, though not necessarily efficient, method is to determine all possible "walks" that end up between 93 and 107. A bit more efficient method might be to enumerate walks that put you outside that interval since there appear to be fewer of those. The probability you are inside the interval is, of course, 1 minus the probability you are outside.

Note that the order in which you win or lose is irrelevant.
 
wuid said:
In a gambling game , you can win 1$ in each round with probability 0.6 or lose 2$ in probability 0.4. suppose you start with 100$.
find the probability that after 10 rounds you have between 93 to 107 dollars.

i am not sure how to start the solution,

thanks,

It might be a bit easier to simplify the "randomness" as follows: assume that in each play you always start by losing $2; then you gain an additional $0 with probability 0.4 or an additional $3 with probability 0.6. In 10 rounds you will have D = 100 - 20 + 3S dollars, where S = \sum_{i=1}^{10} X_i, and the X_i are iid random variables with distribution P{X=0} = 4/10, P{X=1} = 6/10. What limits on S give D between 93 and 107?

RGV
 
Last edited:
HallsofIvy said:
Well, one obvious, though not necessarily efficient, method is to determine all possible "walks" that end up between 93 and 107. A bit more efficient method might be to enumerate walks that put you outside that interval since there appear to be fewer of those. The probability you are inside the interval is, of course, 1 minus the probability you are outside.

Note that the order in which you win or lose is irrelevant.

No, I count fewer possibilities that put the expected gain between -7 and +7 inclusive. That's between 1 and 5 losses inclusive, which is 5 possibilities.

The complementary set would have 6 possibilities (0 losses and 6 to 10 inclusive). That's more work.
 
wuid said:
In a gambling game , you can win 1$ in each round with probability 0.6 or lose 2$ in probability 0.4. suppose you start with 100$.
find the probability that after 10 rounds you have between 93 to 107 dollars.

i am not sure how to start the solution,

thanks,

First work out how many losses will yield an expected gain between -7 and +7 inclusive. This can be done by solving a simple pair of simultaneous equations (or one equation and one inequality).

Then treat it as a Binomial probability problem and just sum the relevant probabilities.
 
Ray Vickson said:
It might be a bit easier to simplify the "randomness" as follows: assume that in each play you always start by losing $2; then you gain an additional $0 with probability 0.4 or an additional $3 with probability 0.6. In 10 rounds you will have D = 100 - 20 + 3S dollars, where S = \sum_{i=1}^{10} X_i, and the X_i are iid random variables with distribution P{X=0} = 4/10, P{X=1} = 6/10. What limits on S give D between 93 and 107?

RGV

so S is a binomal variable with n=10 , p=0.6 and i left to find P(5\leq S \leq 9) ?
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top