I was solving following problem from the book "A first course in probability" by Sheldon Ross
A group of 6 men and 6 women is randomly divided into 2 groups of size 6 each. What is the probability that both groups will have the same number of men?
I solved it as follows:
It was clear to me that this division can be done in $\binom{6}{3}\times\binom{6}{3}$ ways. However I was a bit confused of denominator against which probability is to be calculated, that is, how many number of ways are there to divide 12 people into two groups. I thought it as follows:
- One group contains all men, other group contains all women. This can be done in only $1$ way.
- One group contains 1 man and 5 women, and the other group contains all remaining (5 men and 1 woman). This can be done in $\binom{6}{1}\times\binom{6}{5}$ ways.
- One group contains 2 men and 4 women, and the other group contains all remaining (4 men and 2 women). This can be done in $\binom{6}{2}\times\binom{6}{4}$ ways.
- One group contains 3 men and 3 women, and the other group contains all remaining (3 women and 3 men). This can be done in $\binom{6}{3}\times\binom{6}{3}$ ways. So I felt that the final probability would be $\frac{\binom{6}{3}\binom{6}{3}}{1+\binom{6}{1}\binom{6}{5}+\binom{6}{2}\binom{6}{4}+\binom{6}{3}\binom{6}{3}}=\frac{400}{662}\approx 0.6042$
But the answer given in the book is $0.4329$ which is apparently calculated as (I realised this when I googled) $$\frac{\binom{6}{3}\binom{6}{3}}{\frac{12!}{6!6!}}=\frac{400}{924}$$
My doubts
- Where did I made mistake in my logic while forming sample space of 662?
- Somehow, I still feel mine is correct. Is it so?
Some update
I tried forming sample space for smaller number of people: 2 men and 2 women divided in 2 groups of 2 people each:
By books formula, it will be $\frac{4!}{2!2!}=6$, which can me cross checked as follows:
m1 m2 w1 w2 Two groups Division ID
----------- -------------- -----------
g1 g1 g2 g2 {m1,m2}{w1,w2} D1
g1 g2 g1 g2 {m1,w1}{m2,w2} D2
g1 g2 g2 g1 {m1,w1}{m2,w1} D3
g2 g2 g1 g1 {w1,w2}{m1,m2} D4
g2 g1 g2 g1 {m2,w2}{m1,w1} D5
g2 g1 g1 g2 {m2,w1}{m1,w2} D6
By my logic, it would have been $\binom{2}{1}\binom{2}{1}+\binom{2}{2}\binom{2}{0} = 4+1=5$. When I compared this to above table, I realised that my logic considers divisions D1 and D6 as same and I felt that its essentially correct as these divisions simply forms one group of all men and other group of all women. Books logic is counting them twice by once calling men's group as "group 1" and women's group as "group 2" and then again by calling men's group as "group 2" and women's group as "group 1". However both divisions are same. However, then I felt that
D2andD5are also same
Both groupsm1andw1together andm2andw2togetherD3andD6are also same
Both groupsm1andw2together andm2andw1together
So total distinct divisions would have been just 3. That means even my logic would have been wrong!!!
Whats going wrong? Am I thinking unnecessarily too much?
This claim is true if the groups are labeled. For instance, if one group is assigned to do computer programming and the other is assigned to software testing, then it matters which person is in which group. Under that assumption, there are $\binom{12}{6}$ ways to select the two groups since it matters which six people are placed in the computer programming group. Under this assumption, your sample space was too small since you did not take into account the possibilities that there are more men than women in the group you are selecting. The number of ways of selecting exactly $\color{blue}{k}$ men and $\color{red}{6 - k}$ women for the computer programming group is $$\color{blue}{\binom{6}{k}}\color{red}{\binom{6}{6 - k}}$$ so the number of ways of selecting the computer programming group is $$\color{blue}{\binom{6}{0}}\color{red}{\binom{6}{6}} + \color{blue}{\binom{6}{1}}\color{red}{\binom{6}{5}} + \color{blue}{\binom{6}{2}}\color{red}{\binom{6}{4}} + \color{blue}{\binom{6}{3}}\color{red}{\binom{6}{3}} + \color{blue}{\binom{6}{4}}\color{red}{\binom{6}{2}} + \color{blue}{\binom{6}{5}}\color{red}{\binom{6}{1}} + \color{blue}{\binom{6}{6}}\color{red}{\binom{6}{0}} = \binom{12}{6}$$ Then the probability that both groups have the same number of men is $$\frac{\dbinom{6}{3}\dbinom{6}{3}}{\dbinom{12}{6}}$$
However, the assumption that the groups are labeled is not necessary. But we need to be careful when we divide a group of $12$ people into two groups of six people. Choosing six of the $12$ people to be in one group means the other six people are in the other group. Hence, we get the same two groups when we pick a particular group of people and when we pick its complement. Thus, in selecting six of twelve people to be in one group, we count every division into two groups of six twice. Therefore, the number of ways of dividing twelve people into two groups of six is $$\frac{1}{2}\binom{12}{6}$$ and the number of ways of selecting three men and three women to be in one group is $$\frac{1}{2}\binom{6}{3}\binom{6}{3}$$ so the probability that each group contains the same number of men is $$\frac{\dfrac{1}{2}\dbinom{6}{3}\dbinom{6}{3}}{\dfrac{1}{2}\dbinom{12}{6}} = \frac{\dbinom{6}{3}\dbinom{6}{3}}{\dbinom{12}{6}}$$
Alternate Solution: Suppose that Alexander is one of the men. He must be in one of the two groups. There are $\binom{11}{5}$ ways to select five of the other eleven people to be in his group. In a favorable case, two of the other five men and three of the six women must be in his group. The number of such selections is $\binom{5}{2}\binom{6}{3}$. Hence, the probability that both groups will have the same number of men is $$\frac{\dbinom{5}{2}\dbinom{6}{3}}{\dbinom{11}{5}}$$