There are 8 men and 7 women from which a group of 4 with at least 2 men must be selected. Find how many possible groups there are.
There are 2 ways which both make sense to me but only one method is right.
Correct method:
(No. of groups with 2 men, 2 women) + (No. of groups with 3 men, 1 woman) + (No. of groups with 4 men)
$_8C_2 \times _7C_2 + _8C_3 \times _7C_1 + _8C_4=1050$
Incorrect method:
No. of ways of choosing 2 men from 8 = $_8C_2$
This leaves the remaining 2 spots unrestricted so 2 people can be chosen from the remaining 13 people.
$_8C_2 \times _{13}C_2 = 2184$
Any idea why this second method is incorrect?