parallel_chase wrote:
Stuart thanks for the clarification, i was actually wandering at my own solution for quiet sometime.
I am clear on the point that it should be 3!
But the way Mayur00 has calculated the groups i am quiet confused, it be nice if you could elucidate on that.
Thanks
Sure!
When we choose the first group, we have 6 people available and want to select 2 of them: 6C2.
When we choose the second group, we've already set a group of 2 aside, so now we have 4 people available and want to choose 2 of them: 4C2.
When we choose our final group, there are only 2 people remaining and we need to choose both of them: 2C2.
As with all multi-part combination questions, we MULTIPLY the individual results: 6C2 * 4C2 * 2C2.
It may be tempting to do it this way:
first group: 6 people for slot 1, 5 people for slot 2: 6*5
second group: 4 people for slot 1, 3 people for slot 2: 4*3
third group: 2 people for slot 1, 1 person for slot 2: 2*1
Total possibilities: 6*5*4*3*2*1
The problem with this approach is that it also takes into account the order in which we choose the groups, so we end up counting single combinations multiple times.
For example, if we call the 6 people A, B, C, D, E and F, using the 6! method we'd have counted:
(AB)(CD)(EF), (BA)(CD)(EF), (DC)(FE)(AB) and many other arrangements as disinct, when in fact they all end up giving us the same 3 groups.