1,375 views
1 1 vote
In a group of 11 people what is the probability that exactly two people have birthday on same day ?

2 Answers

7 7 votes

It is a famous probability problem called The Birthday Paradox.

It is used to compute that at least two people share the same birthday (ignore year) in some people in a room Or in a group of n people.

Now, I'm going to compute the probability in the following manner-

Probability of at least two people share the same birthday = $1- $ Probability of no people share the same birthday

Now, the first people can born in any day of the year (assuming it's a normal year not a leap year) = $\dfrac{365}{365}$

the second people can have $364$ possible birthdays, so the second people's probability is $\dfrac{364}{365}$

the third people can have $363$ possible birthdays, so the third people's probability is $\dfrac{363}{365}$

$\vdots $

$11^{th}$ number people can have $355$ (because $10^{th}$ number people have the possibility of $356$ birthdays) possible birthdays, & the probability will be $\dfrac{355}{365}$

∴ Probability of no two people have the same bday = $\dfrac{365}{365} \times \dfrac{364}{365} \times \dfrac{363}{365} \times \ldots \times \dfrac{355}{365}$ 

 $\quad \quad \quad = \dfrac{365!}{(354! *(365^{11}))}$

∴ Probability of two people have same birthday $= 1-\dfrac{365!}{(354! *(365^{11}))}  \\ = 0.1411 = 14.11\%$

edited by
3 3 votes

Q: In a group of 11 people what is the probability that exactly two people have birthday on same day?

We want exactly two people out of 11 people to share same birthday. 

let’s ignore leap years.

First we need to chose 2 people out of 11 to share the same birthday.

That is C(11,2) = 55

No. of ways exactly two people have same birthday is

55*365*364*….*356 = 55*365!/355!

Probability is:

(55*365!)/(355! * 365^11) = 0.132 = 13.2%

reshown by
Answer:
Position:
Show:

Related questions

1 1 vote
1 1 answer
597
597 views
Arjun asked Jun 10, 2018
597 views
A coin is such that after every toss the probability of same side coming again increases by $50\%$ from the initial value. If initially the probability of head and tail a...
1 1 vote
0 0 answers
600
600 views
Arjun asked Jun 10, 2018
600 views
The chance of rainfall in the afternoon is twice that in the morning and there is no chance of rain happening at both morning and afternoon. If it rained for $3$ days, wh...
2 2 votes
0 0 answers
775
775 views
Arjun asked Jun 10, 2018
775 views
Given a sequence of numbers where numbers at odd positions as well as even positions are sorted in increasing order. For example1 42 3 44 6 45 9Which of the following so...
2 2 votes
2 answers 2 answers
654
654 views
Arjun asked Jun 10, 2018
654 views
The set of values printed (in any order) by the following code will be#include<stdio.h #include<unistd.h int main() { static int count; if(fork()) { count++; } if(fork() ...