Good Day!
I was doing some combinatorics problems when I got stuck.
The problem was:
Suppose that a teacher selects 4 students from 5 boys and 4 girls. If at least one boy and one girl must be selected, then the number of distinct selecting ways is ----.
Now, I went to solve this problem like this:
We first select the minimum boys and girls needed. That would be 4 $\cdot$ 5. Now we select the rest of the 2 students which is ${7 \choose 2}$. Applying the multiplication principle, it is $20$ $\cdot$ $ 21 $ = $420$.
However, the correct answer is 120 which is done by considering the separate cases:
- $3$ boys, $1$ girl
- $2$ boys, $2$ girls
- $1$ boys, $3$ girls
and then applying combinations.
What am I doing wrong?
Thanks