Exercise 6.2 — Question 20
How many committees of 5 members can be formed from a group of 8 men and 6 women if the committee must contain at least 2 women?
Note: If the original problem statement differs, replace the above with the exact textbook question. The solution method below applies to the standard FBISE Exercise 6.2 Q20 format.
The number of ways to choose r items from n distinct items (order does not matter) is:
(rn)=r!(n−r)!n!
We need committees of 5 members from 8 men and 6 women with at least 2 women.
"At least 2 women" means: exactly 2, 3, 4, or 5 women.
(26)×(38)=15×56=840
(36)×(28)=20×28=560
(46)×(18)=15×8=120
(56)×(08)=6×1=6
840+560+120+6=1526
- Combination formula (rn): used when order does not matter.
- Addition Principle: when an event can occur in mutually exclusive ways, add the counts.
- Multiplication Principle: when two independent selections are made, multiply the counts.
- "At least" condition: handled by summing all valid cases (or using complement method).
Total committees of 5 from 14 people:
(514)=2002
Committees with 0 women (all men):
(58)=56
Committees with exactly 1 woman:
(16)×(48)=6×70=420
At least 2 women =2002−56−420=1526 ✓
Combinations appear in:
- Lottery odds: choosing 6 numbers from 49 gives (649)=13,983,816 possible tickets.
- DNA sequences: selecting bases for a codon from available nucleotides.
- Team selection: choosing project teams, sports squads, or committee members.