Skip to content

Calculates a winning strategy for given roulette odds. Does better with more iterations and more unlikely odds.

Notifications You must be signed in to change notification settings

b-schoen/RouletteWinner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

RouletteWinner

Calculates a winning strategy for given roulette odds. Does better with more iterations and more unlikely odds.

Strategy:

Given odds (ex: 2:1), determines a winning strategy. To get the idea behind this strategy consider the scenario where we're playing with 2:1 odds.

Bet the minimum bet
If we win
    Continue betting the minumum
If we lose
    Double the existing bet

The logic behind this is that if we win with our doubled bet, we make back what we've lost plus some. This strategy extends to any given odds.

Example:

Starting - 500
Odds - 2:1

Bet: 5
    Lose 5
Bet: 10
    Lose 10
Bet: 20
    Win 40

Running total: +5

Example (Unlikely odds):

Starting - 829
Odds - 4:1

Bet: 5
    Lose 5
Bet: 6
    Lose 6
Bet: 8
    Lose 8
Bet 11
    Win 44

Running total: +14

About

Calculates a winning strategy for given roulette odds. Does better with more iterations and more unlikely odds.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages