Birthday Paradox Calculator

Calculate the probability that at least two people in a group share the same birthday. Enter the group size to see the surprising results.

P(SHARED BIRTHDAY)
--
P(No Match)
--
People
--
50% Threshold
--
99% Threshold
--

The Birthday Paradox

The birthday paradox is the counterintuitive result that in a group of just 23 people, there is a greater than 50% chance that at least two share the same birthday. With 70 people, the probability exceeds 99.9%. This surprises most people because they confuse it with the probability of someone sharing THEIR specific birthday.

The key insight is that with n people, there are n(n-1)/2 pairs to compare. With 23 people, that's 253 pairs, each with a small chance of matching, but collectively reaching over 50%.

Formula

P(no match) = (365/365)(364/365)(363/365)...((365-n+1)/365)
P(at least one match) = 1 - P(no match)

Probability Table

PeopleP(Match)
1011.7%
2041.1%
2350.7%
3070.6%
5097.0%
7099.9%

FAQ

Why is it called a paradox?

It is not a true logical paradox, but a veridical paradox -- a result that is provably true but seems false. Human intuition struggles with combinatorial growth.

What are real-world applications?

Hash collisions in computer science, cryptographic attack planning (birthday attack), and DNA database matching all rely on birthday paradox mathematics.