You can put this solution on YOUR website! There are 5 women and 7 men. How many different committees of 3 men can be formed?
----
# of ways to pick 3 men: 7C3 = (7*6*5)/(1*2*3) = 35
-----
# of ways to pick any number of the 5 women:: 2^5 = 32
-----
Total # of possible committees: 35*32 = 1120
=================
Cheers,
Stan H.
=================