-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathroulette.py
122 lines (113 loc) · 3.88 KB
/
roulette.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import random
class FairRoulette():
def __init__(self):
self.pockets = []
for i in range(1,37):
self.pockets.append(i)
self.ball = None
self.blackOdds, self.redOdds = 1.0, 1.0
self.pocketOdds = len(self.pockets) - 1.0
def spin(self):
self.ball = random.choice(self.pockets)
def isBlack(self):
if type(self.ball) != int:
return False
if ((self.ball > 0 and self.ball <= 10)\
or (self.ball>18 and self.ball<=28)):
return self.ball%2 == 0
else:
return self.ball%2 == 1
def isRed(self):
return type(self.ball) == int and not self.isBlack()
def betBlack(self, amt):
if self.isBlack():
return amt*self.blackOdds
else: return -amt
def betRed(self, amt):
if self.isRed():
return amt*self.redOdds
else: return -amt*self.redOdds
def betPocket(self, pocket, amt):
if str(pocket) == str(self.ball):
return amt*self.pocketOdds
else: return -amt
def __str__(self):
return 'Fair Roulette'
def playRoulette(game, numSpins, toPrint = True):
luckyNumber = '2'
bet = 1
totRed, totBlack, totPocket = 0.0, 0.0, 0.0
for i in range(numSpins):
game.spin()
totRed += game.betRed(bet)
totBlack += game.betBlack(bet)
totPocket += game.betPocket(luckyNumber, bet)
if toPrint:
print(numSpins, 'spins of', game)
print('Expected return betting red =',
str(100*totRed/numSpins) + '%')
print('Expected return betting black =',
str(100*totBlack/numSpins) + '%')
print('Expected return betting', luckyNumber, '=',\
str(100*totPocket/numSpins) + '%\n')
return (totRed/numSpins, totBlack/numSpins, totPocket/numSpins)
#numSpins = 10000
#game = FairRoulette()
#playRoulette(game, numSpins)
class EuRoulette(FairRoulette):
def __init__(self):
FairRoulette.__init__(self)
self.pockets.append('0')
def __str__(self):
return 'European Roulette'
class AmRoulette(EuRoulette):
def __init__(self):
EuRoulette.__init__(self)
self.pockets.append('00')
def __str__(self):
return 'American Roulette'
def findPocketReturn(game, numTrials, trialSize, toPrint):
pocketReturns = []
for t in range(numTrials):
trialVals = playRoulette(game, trialSize, toPrint)
pocketReturns.append(trialVals[2])
return pocketReturns
random.seed(0)
numTrials = 20
resultDict = {}
games = (FairRoulette, EuRoulette, AmRoulette)
for G in games:
resultDict[G().__str__()] = []
for numSpins in (100, 1000, 10000, 100000):
print('\nSimulate betting a pocket for', numTrials,
'trials of',
numSpins, 'spins each')
for G in games:
pocketReturns = findPocketReturn(G(), numTrials,
numSpins, False)
print('Exp. return for', G(), '=',
str(100*sum(pocketReturns)/float(len(pocketReturns))) + '%')
def getMeanAndStd(X):
mean = sum(X)/float(len(X))
tot = 0.0
for x in X:
tot += (x - mean)**2
std = (tot/len(X))**0.5
return mean, std
random.seed(0)
numTrials = 20
resultDict = {}
games = (FairRoulette, EuRoulette, AmRoulette)
for G in games:
resultDict[G().__str__()] = []
for numSpins in (100, 1000, 10000):
print('\nSimulate betting a pocket for', numTrials,
'trials of', numSpins, 'spins each')
for G in games:
pocketReturns = findPocketReturn(G(), 20, numSpins, False)
mean, std = getMeanAndStd(pocketReturns)
resultDict[G().__str__()].append((numSpins,
100*mean, 100*std))
print('Exp. return for', G(), '=', str(round(100*mean, 3))
+ '%,', '+/- ' + str(round(100*1.96*std, 3))
+ '% with 95% confidence')