Strange Coincidence
Programming Snapshot – Python Gambling
Can 10 heads in a row really occur in a coin toss? Or, can the lucky numbers in the lottery be 1, 2, 3, 4, 5, 6? We investigate the law of large numbers.
If you follow the stock market, you are likely to hear people boasting that their buy and sell strategies allegedly only generate profits and never losses. Anyone who has read A Random Walk down Wall Street [1] knows that wild stock market speculation only leads to player bankruptcy in the long term. But what about the few fund managers who have managed their deposits for 20 years in such a way that they actually score profits year after year?
According to A Random Walk down Wall Street, even in a coin toss competition with enough players, there would be a handful of "masterly" throwers who, to the sheer amazement of all other players, seemingly throw heads 20 times in a row without tails ever showing up. But how likely is that in reality?
Heads or Tails?
It is easy to calculate that the probability of the same side of the coin turning up twice in succession is 0.5x0.5 (i.e., 0.25), since the probability of a specific side showing once is 0.5 and the likelihood of two independent events coinciding works out to be the multiplication of the two individual probabilities. The odds on a hat trick (three successes in a row) are therefore 0.5^3=0.125, and a series of 20 is quite unlikely at 0.5^20=0.000000954. But still, if a program only tries often enough, it will happen sometime, and this is what I am testing for today. The short Python coin_throw()
generator in Listing 1 [2] simulates coin tosses with a 50 percent probability of heads or tails coming up.
Listing 1
cointhrow
01 #!/usr/bin/env python3 02 import random 03 04 def coin_throw(): 05 sides=('heads', 'tails') 06 07 while True: 08 yield sides[random.randint(0, 1)] 09 10 def experiment(): 11 run = 1 12 max_run = 0 13 prev = "" 14 count = 0 15 16 for side in coin_throw(): 17 count += 1 18 19 if prev == side: 20 run += 1 21 if run > max_run: 22 max_run = run 23 print("max_run: %d %s (%d)" % 24 (max_run, side, count)) 25 else: 26 prev = side 27 run = 1 28 29 experiment()
Listing 1 is divided into the coin_throw()
coin toss generator and the experiment evaluation in the experiment()
function. In a for
loop as embedded in line 16, it looks like coin_throw()
would return a long list of result strings consisting of heads
or tails
, but in reality, the function is a dynamic generator that returns a new value whenever an iteration pump like the for
loop asks if there is more coming.
In the Generator House
How does the generator, whose output is shown in Figure 1, work? The key is the yield
command in line 8 of Listing 1. Python interrupts the execution of the current function for a yield
, remembers its internal state, and returns the string (heads
or tails
) to the calling program in line 8. The randint(0,1)
method returns the integer value
or 1
with 50 percent probability, and the script picks one of the two entries in the sides
tuple.
The next time the coin_throw()
function is called, the program flow returns to the previous location within the function to continue where yield
left off. In this case, this is the endless loop with while True
in line 7, whose condition is still true, whereupon another yield
command again returns a random value. Thus the generator produces an endless sequence of values in coin_throw()
and always performs a new coin toss if the for
loop in the main program wants more.
The experiment()
function's remaining code stores the number of identical coin toss outcomes in sequence so far in the variable run
, the maximum longest sequence so far in max_run
, the previous coin toss in prev
(heads
or tails
), and the total number of tosses so far in count
.
Fatal Double Down
The output from the script in Figure 2 reveals that after 21 million passes, a sequence of 23 tails in succession actually occurred. If a player had doubled the bet for the next game each time they lost, a strategy called "doubling down," they would have needed a total of 2^23 – 1=$8,388,607 of betting capital, assuming an initial bet of $1, not to go bankrupt if they had initially bet on heads, only to see 23 tails in a row with growing frustration.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.
-
New Slimbook EVO with Raw AMD Ryzen Power
If you're looking for serious power in a 14" ultrabook that is powered by Linux, Slimbook has just the thing for you.
-
The Gnome Foundation Struggling to Stay Afloat
The foundation behind the Gnome desktop environment is having to go through some serious belt-tightening due to continued financial problems.
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.