Explore the famous probability puzzle: how many people need to be in a room for two to share a birthday? The answer might surprise you!
With 23 people in a room, there's a 50.7% chance that at least two people share the same birthday. This is often surprising, as our intuition suggests we would need many more people for a shared birthday to be likely.
The birthday problem, also known as the birthday paradox, asks about the probability that, in a set of randomly chosen people, at least two will share a birthday. The paradox is that this probability reaches 50% with just 23 people, and 99.9% with just 70 people - far fewer than most people intuitively expect.
The birthday problem is solved by calculating the probability of the complementary event: no two people sharing a birthday. For n people, we multiply the probabilities of each person having a different birthday from all previous people:
P(no shared birthdays) = 365/365 × 364/365 × 363/365 × ... × (365-n+1)/365
Then, the probability of at least one shared birthday is:
P(at least one shared birthday) = 1 - P(no shared birthdays)
The birthday problem has practical applications beyond being a fun probability puzzle:
It's called a paradox because the result is counterintuitive. Most people guess that you would need many more people (closer to 183, which is about half of 365) for a 50% chance of a shared birthday.
The standard calculation assumes 365 possible birthdays, ignoring February 29. A more precise calculation would use 366 days and adjust for the probability of being born on February 29.