Thread Rating:

chillin221
chillin221
  • Threads: 1
  • Posts: 2
Joined: Mar 20, 2013
March 20th, 2013 at 10:43:43 AM permalink
I love all of the info on this site, but I don't know why betting systems aren't recommended here.

I may have misunderstood some of the information I've read on here, but I can't seem to figure out why betting systems are a bad idea.
I know you can get house odds down to .28% without counting cards if you're on the right table, but lets just say that you only win 43 percent of the time.
I created a quick computer program to simulate a betting system that follows these rules:
-You win 43% of the time
-initial bet starts at table minimum
-if you lose you double your bet
-if your doubled bet is over the table max, you set the bet at table max.
-once you win, you reset the bet to table min (even if it has been at the table max for the last 5 hands).
-I initial set the program up with a bankroll of 50000 on a $1 min and $500 dollar max
- games is the number of hands played.

Every time I run it, i never get in the red. Obviously starting with 50,000 with an initial bet of 1 dollar, it may take awhile.

Every where I've read in the blackjack section says that progressive betting doesn't really matter except for making things fun and more volatile. But check the stats:
When only placing a 5 dollar bet and never changing that amount on 1,000,000 hands:

Losses: 569878 Wins: 430122
loss ratio: 0.569878
minBank: -648780
maxBank: 50060
streak: 16
ending balance: -648780

Now, with doubling (as mentioned above):

Losses: 569752 Wins: 430248
loss ratio: 0.569752
minBank: 17927
maxBank: 443052
streak: 15
ending balance: 443049

The numbers seem to be pretty consistent every time I run the thing.

If you want to check out the code (its pretty easy to read even if you're not a programmer) here it is:

import java.util.Random;

public class Test {
//the setup variables:
static int tablemin = 1;
static int tablemax = 500;
static int bankroll = 50000;
static int games = 1000000;
static double winPercentage = 43;
static int wins = 0;
static int losses = 0;
static int bet = tablemin;
static int maxBank = 0;
static int minBank = bankroll;

// this just starts the program
public static void main(String[] args) {
startGame();
}

private static void startGame() {
int streak = 0;
int maxStreak = 0;
for (int i = 0; i < games; i++) {
Random r = new Random();
// result is a random number 0-99 add 1 makes it a random
// number 1-100
double result = ((double) r.nextInt(100) + 1);
if (result <= winPercentage) {
wins++;
bankroll += bet;
bet = tablemin;
streak = 0;
} else {
losses++;
bankroll -= bet;
bet *= 2;
streak++;
if (streak > maxStreak)
maxStreak = streak;
if (bet > tablemax)
bet = tablemax;
}
if (bankroll > maxBank)
maxBank = bankroll;
if (bankroll < minBank)
minBank = bankroll;
}
double f = (double) ((double) losses / (double) games);
System.out.print(" Losses: " + losses + " Wins: " + wins + "\n");
System.out.print(" loss ratio: " + f + "\n");
System.out.print(" minBank: " + minBank + "\n");
System.out.print(" maxBank: " + maxBank + "\n");
System.out.print(" streak: " + maxStreak + "\n");
System.out.print(" ending balance: " + bankroll);
}
}

Am I completely missing something, or what?
chillin221
chillin221
  • Threads: 1
  • Posts: 2
Joined: Mar 20, 2013
March 20th, 2013 at 11:01:39 AM permalink
It's pretty stable after a million hands and you want to set you cap at 128 (min bet of 1), but in the short term (1000 hands) it's all over the place (starting bankroll = 500):
Losses: 591 Wins: 409
loss ratio: 0.591
minBank: -2643
maxBank: 560
streak: 12
ending balance: -2127

Losses: 568 Wins: 432
loss ratio: 0.568
minBank: -655
maxBank: 675
streak: 10
ending balance: -167

Losses: 574 Wins: 426
loss ratio: 0.574
minBank: -2251
maxBank: 594
streak: 12
ending balance: -1661

Losses: 570 Wins: 430
loss ratio: 0.57
minBank: -295
maxBank: 716
streak: 10
ending balance: 382

Losses: 587 Wins: 413
loss ratio: 0.587
minBank: 3
maxBank: 877
streak: 9
ending balance: 877

..etc..
DJTeddyBear
DJTeddyBear
  • Threads: 207
  • Posts: 10992
Joined: Nov 2, 2009
March 20th, 2013 at 11:43:22 AM permalink
You're kidding, right?

Who has time to sit for a million hands? Where can you find a table with a $1 minimum and $500 max? Who sits down with 100 times the max?

Hell, even your short term of 1,000 hands is fairly long term!


On a side note, your "easy to read" program looks like Greek to me. And I have over 35 years of programming experience!
I invented a few casino games. Info: http://www.DaveMillerGaming.com/ ————————————————————————————————————— Superstitions are silly, childish, irrational rituals, born out of fear of the unknown. But how much does it cost to knock on wood? 😁
DJTeddyBear
DJTeddyBear
  • Threads: 207
  • Posts: 10992
Joined: Nov 2, 2009
March 20th, 2013 at 11:47:08 AM permalink
P.S. Systems are not recommended for a simple reason: They don't work.
I invented a few casino games. Info: http://www.DaveMillerGaming.com/ ————————————————————————————————————— Superstitions are silly, childish, irrational rituals, born out of fear of the unknown. But how much does it cost to knock on wood? 😁
charliepatrick
charliepatrick
  • Threads: 39
  • Posts: 2946
Joined: Jun 17, 2011
March 20th, 2013 at 4:46:36 PM permalink
Quote: chillin221

...I can't seem to figure out why betting systems are a bad idea...

There is nothing wrong with betting systems for fun - for instance when buying lottery tickets one way is to use car registration numbers to pick the numbers - or if picking horses use a name you like.

However the forum is aimed towards doing the best you can, using the best strategy to reduce the advantage to the house to a minimum, identify profitable scenarios, make your money last longer etc.

There are typically three types of games
(a) those where there is always a player edge, albeit using a fixed/complicated strategy.
(b) those where sometimes an advantage can be occur or be determined and bets increased or strategy changed.
(c) those where there is always a house edge.

For (a) games, the best idea is to bet as much as you can as often as possible (subject to bankroll and ruin analysis).
For (b) games, the best idea is to bet minimum (or not at all) during adverse conditions and increase bets during favourable conditions: Blackjack counting falls into this category; lotteries after rollovers or jackpot style bets also apply if the top prize is large enough.

Most casinos games fall into class (c), i.e. in the long run the house wins; thus the strategy is to play the minimum bet, usually avoid side-bets, and adopt the strategy that minimises the house edge. Any betting systems for these games is rather like finding perpetual motion, they don't work! For instance you can create a series of bets than win $1 (e.g. double your bet each loss) and while every (say) 999 times you win $1, house edge says that the 1000th time you lose much more than $1000; thus in the long term any system loses.
24Bingo
24Bingo
  • Threads: 23
  • Posts: 1348
Joined: Jul 4, 2012
March 20th, 2013 at 5:16:23 PM permalink
Your system may have a very low chance of putting you in the red, but if that's the case, you'll walk away down much further than you would have walked away up. The sum of the possible outcomes of any strategy will always be negative, since expected values always add. That's why systems are discouraged.

(You'll also find that "system," on this board, is restricted to those proposed by those who don't understand this fact, which seems to include you.)

(Yours in particular is just a simple Martingale variant - it's old as the hills, and infamous for just this reason.)
The trick to poker is learning not to beat yourself up for your mistakes too much, and certainly not too little, but just the right amount.
paisiello
paisiello
  • Threads: 21
  • Posts: 546
Joined: Oct 30, 2011
March 20th, 2013 at 5:33:48 PM permalink
Quote: chillin221


The numbers seem to be pretty consistent every time I run the thing.



The system you describe is actually called a Martingale:
Martingale Betting System

The program written in java looks reasonably intelligible to me. However, the results don't make sense: the 430,248 wins means that only 37,199 wins were required to offset the 569,752 losses. Seems highly improbable.
EvenBob
EvenBob
  • Threads: 441
  • Posts: 28575
Joined: Jul 18, 2010
March 20th, 2013 at 5:34:45 PM permalink
Quote: DJTeddyBear

P.S. Systems are not recommended for a simple reason: They don't work.



Not true. They all work, some for quite awhile. They
just all lose eventually, thats the rub.
"It's not called gambling if the math is on your side."
MonkeyMonkey
MonkeyMonkey
  • Threads: 13
  • Posts: 770
Joined: May 1, 2012
March 20th, 2013 at 11:58:57 PM permalink
Quote: DJTeddyBear

On a side note, your "easy to read" program looks like Greek to me. And I have over 35 years of programming experience!



Some indenting would help, but other than that it looks readable to me. If you want to make fun of him for believing in systems that's hard to argue with, but why be harsh about his program? Or maybe you don't work in languages descended from C?
zeus71
zeus71
  • Threads: 1
  • Posts: 11
Joined: Mar 17, 2013
March 21st, 2013 at 1:15:56 AM permalink
Someone can reproduce the simulation, and THAN , maybe, speak ?

...
zeus71
zeus71
  • Threads: 1
  • Posts: 11
Joined: Mar 17, 2013
March 21st, 2013 at 1:25:12 AM permalink
I remember a lot of GENIUS, saying that was impossible win at BJ....Than was borned card counting....

Than a lot of GENIUS, sayng that the best card counting was HI-LO, for result/easy to use... Than borned KO, reko,OPP....

= a lot of genius.....still some new is discovered.
MonkeyMonkey
MonkeyMonkey
  • Threads: 13
  • Posts: 770
Joined: May 1, 2012
March 21st, 2013 at 1:28:43 AM permalink
Quote: zeus71

Someone can reproduce the simulation, and THAN , maybe, speak ?

...



Unnecessary, this is essentially a Martingale system, which with no limits and an infinite bankroll will always work. Unfortunately, you won't find a no limit game and all bankrolls are finite. The bottom line is there are no known betting systems that are proven to always work. If you can come up with one (and this one certainly isn't new) then you can make a lot of money, but so far no one has been able to, or if they have, they aren't sharing it.
24Bingo
24Bingo
  • Threads: 23
  • Posts: 1348
Joined: Jul 4, 2012
March 22nd, 2013 at 6:50:53 PM permalink
That statement is too weak. It is demonstrably true that, as long as the expected value at every decision point is negative, the expected value of the session will be negative. Finding a system that worked in that sense would be like finding a rational square root of two, or an algorithm to find if a TM halts on a given input, or a way to square the circle by compass and straightedge.

In blackjack, it's not true that the expected value at every decision point is negative, so there are systems by which you can beat it. But those aren't usually considered "betting systems."
The trick to poker is learning not to beat yourself up for your mistakes too much, and certainly not too little, but just the right amount.
s2dbaker
s2dbaker
  • Threads: 51
  • Posts: 3259
Joined: Jun 10, 2010
March 22nd, 2013 at 8:28:47 PM permalink
If I have $50,000 with which to gamble, I'm not going to sit at a $1 table and bet the minimum. Even if this system worked, it wouldn't make enough money to keep my interest for very long.
Someday, joor goin' to see the name of Googie Gomez in lights and joor goin' to say to joorself, "Was that her?" and then joor goin' to answer to joorself, "That was her!" But you know somethin' mister? I was always her yuss nobody knows it! - Googie Gomez
whatever61
whatever61
  • Threads: 4
  • Posts: 36
Joined: Jan 20, 2013
April 7th, 2013 at 3:20:32 PM permalink
If it's still relevant I have an excel where I have this simulation created long time ago. You should be in negative EVERY TIME, on the long run (was testing based on 100,000 times), NO EXCEPTIONS. If your results are different means your simulation is wrong.
Especially with your 43% of winning, is an extremely high House edge of 7%. I was testing it on 2.7% of a roulette.

If you need the simulation let me know.
nezbit
nezbit
  • Threads: 6
  • Posts: 179
Joined: Apr 1, 2013
April 7th, 2013 at 5:54:32 PM permalink
$10-$5000 limits are essentially same thing? Just find a bigger wallet and give it a whirl. let us know how you end up.

my guess is you will have a lot of winning sessions of like $300-$600 depending on how many hands you play, and you will have a few losing sessions where you lose $20,000+ because of the chance you lose x amount in a row.


im sure you could find $100-$50,000 limits as well. :)
MrPapagiorgio
MrPapagiorgio
  • Threads: 58
  • Posts: 183
Joined: Nov 11, 2009
April 11th, 2013 at 5:30:53 PM permalink
Quote: chillin221

I love all of the info on this site, but I don't know why betting systems aren't recommended here.

I may have misunderstood some of the information I've read on here, but I can't seem to figure out why betting systems are a bad idea.
I know you can get house odds down to .28% without counting cards if you're on the right table, but lets just say that you only win 43 percent of the time.
I created a quick computer program to simulate a betting system that follows these rules:
-You win 43% of the time
-initial bet starts at table minimum
-if you lose you double your bet
-if your doubled bet is over the table max, you set the bet at table max.
-once you win, you reset the bet to table min (even if it has been at the table max for the last 5 hands).
-I initial set the program up with a bankroll of 50000 on a $1 min and $500 dollar max
- games is the number of hands played.

Every time I run it, i never get in the red. Obviously starting with 50,000 with an initial bet of 1 dollar, it may take awhile.

Every where I've read in the blackjack section says that progressive betting doesn't really matter except for making things fun and more volatile. But check the stats:
When only placing a 5 dollar bet and never changing that amount on 1,000,000 hands:

Losses: 569878 Wins: 430122
loss ratio: 0.569878
minBank: -648780
maxBank: 50060
streak: 16
ending balance: -648780

Now, with doubling (as mentioned above):

Losses: 569752 Wins: 430248
loss ratio: 0.569752
minBank: 17927
maxBank: 443052
streak: 15
ending balance: 443049

The numbers seem to be pretty consistent every time I run the thing.

If you want to check out the code (its pretty easy to read even if you're not a programmer) here it is:

import java.util.Random;

public class Test {
//the setup variables:
static int tablemin = 1;
static int tablemax = 500;
static int bankroll = 50000;
static int games = 1000000;
static double winPercentage = 43;
static int wins = 0;
static int losses = 0;
static int bet = tablemin;
static int maxBank = 0;
static int minBank = bankroll;

// this just starts the program
public static void main(String[] args) {
startGame();
}

private static void startGame() {
int streak = 0;
int maxStreak = 0;
for (int i = 0; i < games; i++) {
Random r = new Random();
// result is a random number 0-99 add 1 makes it a random
// number 1-100
double result = ((double) r.nextInt(100) + 1);
if (result <= winPercentage) {
wins++;
bankroll += bet;
bet = tablemin;
streak = 0;
} else {
losses++;
bankroll -= bet;
bet *= 2;
streak++;
if (streak > maxStreak)
maxStreak = streak;
if (bet > tablemax)
bet = tablemax;
}
if (bankroll > maxBank)
maxBank = bankroll;
if (bankroll < minBank)
minBank = bankroll;
}
double f = (double) ((double) losses / (double) games);
System.out.print(" Losses: " + losses + " Wins: " + wins + "\n");
System.out.print(" loss ratio: " + f + "\n");
System.out.print(" minBank: " + minBank + "\n");
System.out.print(" maxBank: " + maxBank + "\n");
System.out.print(" streak: " + maxStreak + "\n");
System.out.print(" ending balance: " + bankroll);
}
}

Am I completely missing something, or what?



So I says to him, I said "Get your own monkey!"
JyBrd0403
JyBrd0403
  • Threads: 12
  • Posts: 548
Joined: Jan 25, 2010
April 11th, 2013 at 5:40:06 PM permalink
CONGATULATIONS! I think that proving betting systems work and that all the great mathematicians are morons, deserves at least a congratulations. Now, if you can just get the casinos to stop cheating! Good luck with that! And, seriously, congratulations, and thanks for the proof!
JyBrd0403
JyBrd0403
  • Threads: 12
  • Posts: 548
Joined: Jan 25, 2010
April 11th, 2013 at 6:20:38 PM permalink
Quote: chillin221

Am I completely missing something, or what?



Nope, just finding out how deep the rabbit hole goes.

Can anyone say Betting System Challenge? Pay the man, MichaelBlueJay!
JyBrd0403
JyBrd0403
  • Threads: 12
  • Posts: 548
Joined: Jan 25, 2010
April 11th, 2013 at 7:22:57 PM permalink
Quote: chillin221

Am I completely missing something, or what?



If you are wanting to know why it's winning, it's because of the double downs and Blackjacks. That's where you make your profit with the system, you get to bet higher for free, so your blackjacks and double down come at 30 and 60 dollars etc. If you play with a normal 50/50 game I'm sure you'll find out the system won't work without the double downs and blackjacks.

I don't know java programming, but have you found anything wrong with the program you wrote? If not, then there should be no debate.
teliot
teliot
  • Threads: 43
  • Posts: 2871
Joined: Oct 19, 2009
April 11th, 2013 at 7:33:06 PM permalink
Quote:

Am I completely missing something, or what?


You are creating a new "Random" object each time through the loop. You only need one object. I am not sure how the seeding works for Random, but you may be reseeding and getting repeats of the same number as a result. This is a common mistake that beginners make.

Here is the new code:


private static void startGame() {
int streak = 0;
int maxStreak = 0;
Random r = new Random();
for (int i = 0; i < games; i++) {
..... and so on ....


Here is what I get when I run it:



$ java Test
Losses: 570497 Wins: 429503
loss ratio: 0.570497
minBank: -1383019
maxBank: 50666
streak: 22
ending balance: -1382345
teliot@JGLLC-PC ~/Temp
$ java Test
Losses: 570659 Wins: 429341
loss ratio: 0.570659
minBank: -1396162
maxBank: 50552
streak: 23
ending balance: -1395560
teliot@JGLLC-PC ~/Temp
$ java Test
Losses: 569530 Wins: 430470
loss ratio: 0.56953
minBank: -1297266
maxBank: 50748
streak: 24
ending balance: -1296610
teliot@JGLLC-PC ~/Temp
$ java Test
Losses: 569335 Wins: 430665
loss ratio: 0.569335
minBank: -1420921
maxBank: 50401
streak: 23
ending balance: -1420239
teliot@JGLLC-PC ~/Temp
$ java Test
Losses: 570055 Wins: 429945
loss ratio: 0.570055
minBank: -1401535
maxBank: 50674
streak: 23
ending balance: -1400652
teliot@JGLLC-PC ~/Temp
$
Climate Casino: https://climatecasino.net/climate-casino/
JyBrd0403
JyBrd0403
  • Threads: 12
  • Posts: 548
Joined: Jan 25, 2010
April 11th, 2013 at 7:54:07 PM permalink
Reminds me of the Golden Rule. "The guy with the Gold makes the rules". In this case, "The guy who does the programming...".
  • Jump to: