(a) How many ways can a group of eight be chosen to work on a project?
What I got: C(15,8)
(b) Suppose nine team members are women and six are men.
- i. How many groups of eight can be chosen that contain four women and four men?
What I got: C(9,4)*C(6,4)
- ii. How many groups of eight can be chosen that contain at least one man?
What I got: C(15,8) - 1 (minus 1 for the case all are women)
- iii. How many groups of eight can be chosen that contain at most three women?
What I got: C(9,1)C(6,7) + C(9,2)P(6,6) + C(9,3)P(6,5)
(c) Suppose two team members refuse to work together on projects. How many groups of eight can be chosen to work on a project?
What I got: C(15,8) - C(13,6)
(d) Suppose two team members insist on either working together or not at all on projects. How many groups of eight can be chosen to work on a project?
What I got: C(13,6) + C(13,8)
I didn't know how to do the formatting of the combinations , sorry about that. I just wanted to see if I was approaching this question right. I feel that b)iii) is wrong though. Thanks for anyone looking at this question!
b ii) To form a team of all women, there are $\binom{9}{1}$ options, we just have to exclude one woman. Hence rather than subtract by $1$, you should subtract by $9$.
part $c$, why is it $\binom{12}{6}$, how do you obtain $12$?
For part $d$, same comment as part $c$.