|
@ jack,
You are using permutation here, which is wrong.
Remember, we are forming a committee here and order of persons doesn't matter.
If you are doing it this way, then don't forget to divide it by 2.
Because,
Consider the case where first position is occupied by A and second by B, and another case where first position is occupied by B and second by A.
So these two are equivalent.
Here, order doesn't matter.
So divide your answer by 2.
|