Last active
November 14, 2015 18:42
-
-
Save jonelf/8f1532a70658916a66ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prng = Random.new | |
Trials = 37000 | |
lost = 0 | |
Trials.times do | |
bad_results = 0 | |
250.times do | |
result = prng.rand(1..37) | |
if result <= 19 | |
bad_results += 1 | |
else | |
bad_results = 0 | |
end | |
if bad_results == 7 | |
lost += 1 | |
break | |
end | |
end | |
end | |
puts "#{lost / Trials.to_f} probability of losing 7 in a row." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
0.6873795620437956 probability of losing 7 in a row.