is this game unbeatable?

No idea...phone a wheel-spinner from Las Vegas :rolleyes:

Maybe I can write a short program using your % data earlier. Run 1 million simulations to see what results I get from that.

A: 90/463 = 19.4%

B: 90/463 = 19.4%
C: 90/463 = 19.4%
D: 90/463 = 19.4% : so ~77.6% chance of at least 1 salad
E: 45/463 = 9.7%
F: 30/463 = 6.5%
G: 18/463 = 3.9%
H: 10/463 = 2.3%
 
Ran a million needle spins:
A: 194359
B: 194587
C: 194216
D: 194721
E: 96958
F: 64872
G: 38655
H: 21632
-----------
1,000,000

Kinda supports the percentages I previously calculated...
 
import random
foods = ['tomato', 'cabbage', 'corn', 'carrot', 'hot dog', 'kabob', 'turkey', 'steak' ]
results = random.choices(foods, weights=[90, 90, 90, 90, 45, 30, 18, 10], k=5000)
print(results.count(foods[0]))
print(results.count(foods[1]))
print(results.count(foods[2]))
print(results.count(foods[3]))
print(results.count(foods[4]))
print(results.count(foods[5]))
print(results.count(foods[6]))
print(results.count(foods[7]))

I wrote this in python. I'm trying to run sims for betting strategies I need some help. Thanks
 
Top