longtimelancer
longtimelancer
  • Threads: 23
  • Posts: 54
Joined: Apr 12, 2014
April 29th, 2014 at 6:53:09 PM permalink
What is the chance of never being "up" betting full 345X odds (pass line) assuming bankrolls of 10, 100 and 1000 units?
AxiomOfChoice
AxiomOfChoice
  • Threads: 32
  • Posts: 5761
Joined: Sep 12, 2012
April 29th, 2014 at 6:55:05 PM permalink
Not good. At least for 100 and 1000.
Steen
Steen
  • Threads: 0
  • Posts: 126
Joined: Apr 7, 2014
April 30th, 2014 at 6:07:31 AM permalink
Quote: longtimelancer

What is the chance of never being "up" betting full 345X odds (pass line) assuming bankrolls of 10, 100 and 1000 units?



This is dependent on bet size (which you didn't specify) versus bankroll and how long you'll go before giving up trying.

If you only try for one resolution or if your bet size versus bankroll will only allow for one initial loss before busting then your probability of never being up is the same as the probability of losing the passline = 1004/1980 = ~ 50.7%

If you allow for more resolutions, the variance will increase your chances of being up at some point.

I wrote a script (which you can copy/paste) to help find some answers. It queries for bankroll, bet size, # resolutions, and odds.


If Initializing script Then
csn0 = "Beginning bankroll" :
csn1 = "Bet size" :
csn2 = "Max # Passline resolutions" :
csn3 = "Total # session that were up at some point" :
csn4 = "Total # sessions" :
csn5 = "Percent up at some point" :
csn6 = "Percent never up" :

all(checkstacks) = 0 :
cs0 = input("Enter your beginning bankroll:") :
cs1 = input("Enter your desired bet size (Passline):") :
cs2 = input("Enter max # of Passline resolutions:" & cr &
"(Enter 0 to keep trying until success or bankroll < min bet)") :
Yes / No question "Do you want to take odds?" :
If answer = yes Then autotake full odds = true Else autotake full odds = false EndIf
EndIf

If beginning new session Then
atm deposit 100% of bankroll :
atm withdraw cs0.beginningbankroll
EndIf

If comeout roll Then bet cs1.betsize on passline EndIf

If bankroll > cs0.beginbankroll Then cs3.up = cs3.up + 1 EndIf

If (total # of Passline wagers = cs2.max And cs2.max > 0)
Or bankroll < minimum bet
Or bankroll > cs0.beginbankroll
Then
cs4.numsessions = cs4 + 1 :
cs5.pctup = 100 * cs3 / cs4 :
cs6.pctneverup = 100 - cs5 :
start new session(preserve css)
EndIf



Looking at $5 flat bets, no odds, and unlimited resolutions (iow run until success or busted) I get the following for your 3 bankroll amounts:

Bankroll % chance never up
10 34.3
100 6.2
1000 2.8


Same criteria except taking 345x odds, I get:

Bankroll % chance never up
10 47.7
100 16.2
1000 1.8


I didn't run these sims too long so these are just ballpark figures. Also note that partial odds are taken when remaining bankroll is insufficient for full odds.

Steen
mustangsally
mustangsally
  • Threads: 25
  • Posts: 2463
Joined: Mar 29, 2011
April 30th, 2014 at 7:30:28 AM permalink
Here is what I get to compare to the simulation results
I take 10,100 and 1000 units as just $1 bet
That way any one can convert their flat bets and bankroll using a units bet

My values are calculated. it really is simple to do.

The flat betting uses the famous Gambler's Ruin formula
It is in prob and stats books and all over the internet if one takes a look for it
here is a post I showed
GR Example
The 345x odds uses a Markov chain approach. I used an all-in bet if the full odds could not be made.
This really does not change the values that much compared to betting what is left as odds.
It actually increases very slightly the chances for success.
One can see the chances between don't pass and pass are very close
I really doubt an average player could see a real difference in actual play.

Of course, I would really hate to be those players that never ever sees a 1 unit gain too.
And from the math we know there must be many of them.
But someones has to be there.

win goal = 1 unit (so FAIL = never being up)
we can see the larger the bankrolls not much of a difference in the overall success/fail rate
edit: data for 1000 and 2000 unit bankroll with Don't Pass 345x odds and
2000 unit bankroll Pass Line with 345x odds
are from a 10 million session simulation.
Bankroll UnitsDon't PassFail1 inDon't Pass 345xFail1 inPassFail1 inPass 345xFail1 in
265.727%34.273%2.92   65.720%34.280%2.92   
1089.581%10.419%9.6076.517%23.483%4.2689.570%10.430%9.5974.479%25.521%3.92
2093.786%6.214%16.0984.913%15.087%6.6393.773%6.227%16.0684.868%15.132%6.61
10097.061%2.939%34.0296.247%3.753%26.6497.041%2.959%33.8096.240%3.760%26.60
20097.224%2.776%36.0297.965%2.035%49.1397.202%2.798%35.7497.965%2.035%49.14
100097.234%2.766%36.1599.380%0.620%161.3997.211%2.789%35.8699.37186%0.62814%159.20
200097.234%2.766%36.1599.530%0.470%212.8997.211%2.789%35.8699.519%0.481%207.96


Sally
I Heart Vi Hart
ThatDonGuy
ThatDonGuy
  • Threads: 117
  • Posts: 6295
Joined: Jun 22, 2011
April 30th, 2014 at 7:47:55 AM permalink
I did a quick Monte Carlo of 10,000,000 passes of each bankroll size, and I got:

Bankroll 10: 25.52% (1 time in 4)
Bankroll 100: 3.75% (1 time in 26)
Bankroll 1000: 0.63% (1 time in 159)

Mine are based on the initial bet being 1 (i.e. for "bankroll 10", the bankroll is 10x the pass line bet) with 3/4/5 odds.
mustangsally
mustangsally
  • Threads: 25
  • Posts: 2463
Joined: Mar 29, 2011
April 30th, 2014 at 9:06:34 AM permalink
Quote: ThatDonGuy

I did a quick Monte Carlo of 10,000,000 passes of each bankroll size, and I got:

Bankroll 1000: 0.63% (1 time in 159)

I agree with your 1000 unit bankroll
my simulation also shows
pass 345x
Bankroll was busted . . = 0.627% of the time ( 62725)
Win goal was met . . . = 99.373% of the time ( 9937275)
dpass 345x
Bankroll was busted . . = 0.620% of the time ( 61960)
Win goal was met . . . = 99.380% of the time ( 9938040)

pass 345x
2000 unit bankroll
Bankroll was busted . . = 0.481% of the time ( 48087) about 1 in 208
Win goal was met . . . = 99.519% of the time ( 9951913)

don't pass 345x
2000 unit bankroll
Bankroll was busted . . = 0.470% of the time ( 46973) about 1 in 213
Win goal was met . . . = 99.530% of the time ( 9953027)

can not find the error in my Markov chain in Excel
added 1 pm: found the error.
I had named a matrix the same as another
can not blame that one on my fat fingers. leftover from copy/paste

Sally
I Heart Vi Hart
longtimelancer
longtimelancer
  • Threads: 23
  • Posts: 54
Joined: Apr 12, 2014
April 30th, 2014 at 4:07:54 PM permalink
Sally,

Could you fill out your spread sheet with the correct numbers?

Thanks!
  • Jump to: