Skip to content

Explains the infamous birthday problem and shows how the math indeed checks out

Notifications You must be signed in to change notification settings

SyedAbuTalib/birthday_problem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

birthday_problem: in code

You probably already know the problem. There's a 50/50 chance of two people having the same birthday in a 365-day calendar year. How?

Intuitively, humans think in addition, subtraction, multiplication, division. But the math invovled in the birthday problem involves exponents, and boy do we suck at exponents.

Let's look at the code.

Ruby Code

def play(people)
  enumerated_birthdays = Hash.new(0)

  people.times do
    enumerated_birthdays[rand(365)] += 1
  end

  enumerated_birthdays.each do |_key, val|
    return true if val > 1
  end
  false
end

Hmm... still no exponents. We're getting there trust me. But in this code from birthday_problem.rb, we can see how we determine a birthday being shared or not.

Simulation

When running ruby birthday_problem.rb, a 1000 test cases will run and a hash will be printed. In a run, I got:

{"passes"=>502, "fails"=>498}

As we can see, we got pretty close to getting 50/50. But how?

Explanation

Let's think about this problem in handshakes. When there are 23 people (including ourselves), we shake hands with 22 other people. But we don't need to be part of the two people who share a birthday. We need to account that other people shake hands with each other, so the total amount of handshakes is actually:

And in each handshake, there is a 1/365 chance of the two people sharing birthdays. We can use this information and use the "At least 1" rule: The chances of having "At least 1" is the same probability of 1 - None

We barely have over a 50% chance of two people sharing a birthday when it comes to 23 people.

About

Explains the infamous birthday problem and shows how the math indeed checks out

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages