Exercise 6.2 — Question 15
A committee of 5 members is to be formed from 6 men and 4 women. In how many ways can this be done if the committee must contain:
(a) exactly 2 women
(b) at least 2 women
(c) at most 2 women
The number of ways to choose r objects from n distinct objects (order does not matter) is:
(rn)=r!(n−r)!n!
We need exactly 2 women from 4, and exactly 3 men from 6.
Ways=(24)×(36)
=2!2!4!×3!3!6!
=6×20=120
"At least 2 women" means 2, 3, or 4 women on the committee.
| Women | Men | Ways |
|---|
| 2 | 3 | (24)×(36)=6×20=120 |
| 3 | 2 | (34)×(26)=4×15=60 |
| 4 | 1 | (44)×(16)=1×6=6 |
Total=120+60+6=186
"At most 2 women" means 0, 1, or 2 women on the committee.
| Women | Men | Ways |
|---|
| 0 | 5 | (04)×(56)=1×6=6 |
| 1 | 4 | (14)×(46)=4×15=60 |
| 2 | 3 | (24)×(36)=6×20=120 |
Total=6+60+120=186
- Exactly k: select precisely k from one group and the remainder from the other.
- At least k: sum all cases where the count is ≥k.
- At most k: sum all cases where the count is ≤k.
- Always verify: (at least 2) + (at most 1) should equal the total number of unrestricted committees.
Total unrestricted=(510)=252
186+(6+60)=186+66=252✓