1
$\begingroup$

The birthday problem poses the following problem:

Calculate the probability that at least two people share a birthday out of $k$ people, assuming $365$ days in a year.

My attempt was to fix two people's birthdays to match. There are $k(k - 1)$ ways to do this. For the remaining $k - 2$ people, any birthday is fine, so there are $k(k - 1)365^{k - 2}$ ways to do dole out the birthdays where there is a match. I divided that by $365^k$, all the ways the birthdays can be distributed, and figured that would be the probability.

However, I am wrong. The answer is $1 - \frac{365(364)\cdots(365 - k + 1)}{365^k}$ from counting the complement. Where am I going wrong? Thanks.

$\endgroup$
2
  • 1
    $\begingroup$ The best way for such problems is to start with a small $k$. Let k=3. We use the complementary probability: 1-P("no common birthday"). Let say that person A has birthday at day $i$. Then the probability that person B has the not same birthday is $\frac{364}{365}$. And given that person B has not the same birthday as person A, the probability that person C has not the same birthday as person A and B is $\frac{363}{365}$. $\endgroup$ Commented May 17, 2022 at 16:11
  • 1
    $\begingroup$ (continued) So the probability that at least two people share a birthday out of 2 people, assuming 365 days in a year is $1-\frac{364}{365}\cdot \frac{363}{365}=1-\frac{(365)\cdot (365-2+1)\cdot (365-3+1)}{365^3}$ This is $1 - \frac{365(364)\cdots(365 - k + 1)}{365^k}$ for $k=3$ $\endgroup$ Commented May 17, 2022 at 16:12

2 Answers 2

2
$\begingroup$

There are several problems in your approach:

  • The first problem is that your consider ordered pair instead of unordered. Really the cases $(1, 2)$ and $(2, 1)$ are the same and should be replaced by $\{\,1, 2\,\}$. The number of unordered pairs is $\frac{k(k - 1)}{2}$.

  • The second problem is that you allow other people to have the same birthday as the selected pair. Therefore you count the same combination several times. For example, if there are $k = 5$ people with the same birthday, you will count this option $\frac{k(k - 1)}{2} = 10$ times. However just removing for all others this one day is not enough, because there are cases when two pairs share birthday (unique for each pair). And the problem is still the same: you count the same combination several times. Therefore you should make all other birthdays to be pairwise distinct, and probability is $\frac{k(k - 1)}{2} \cdot \frac{365 \cdot 364 \cdots (365 - (k - 2))}{365^k}$.

  • The third problem follows from the second one, but it is the most significant. You should consider also cases when $3, 4, \ldots, k$ people have the same birthday. This is not a big deal: if exactly $\ell$ people share birthday and all others have pairwise distinct birthdays the probability is $\binom{k}{\ell} \cdot \frac{365 \cdot 364 \cdots \cdot (365 - (k - \ell))}{365^k}$. However there are more complicated cases, when there are two pairs sharing birthday (unique for each pair), when there are such pair and triple, when there are ten such pairs, six triples and three quadruples and so on. The number of cases you should consider is exponential of $k$ and there is no simple way to consider them all.

$\endgroup$
2
$\begingroup$

The number of possible combinations of birthdays such that nobody shares a birthday out of $k$ individuals (assuming that $k<365$) is ${365(364)(363)…(365-k+1)}$.

The total number of possible birthdays is $365^k$.

Therefore, the probability that nobody shares a birthday will be $\frac{365(364)…(365-k+1)}{365^k}$.

We can then work out the probability that at least $2$ people share a birthday by simply computing $1-\frac{365(364)…(365-k+1)}{365^k}$ - giving us the required answer to your problem.

Now that begs the question of what is wrong with your solution. The issue is that you shouldn’t multiply $k(k-1)$, you should be multiplying the number of possible positions available for an individuals birthday. For example, if we fix the first person’s birthday, then there are now 364 choices for the second person’s birthday to lie on (assuming that they do not share a birthday).

$\endgroup$

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .