Exercise 6.2 — Question 5
In how many ways can a committee of 3 members be selected from a group of 8 people?
We need to choose 3 people from 8, where order does not matter — this is a combination problem.
(rn)=r!(n−r)!n!
Substituting n=8 and r=3:
(38)=3!(8−3)!8!=3!⋅5!8!
=3×2×18×7×6=6336=56
Answer: There are 56 ways to select a committee of 3 from 8 people.
A combination is a selection of objects where order does not matter.
(rn)=nCr=r!(n−r)!n!
where:
- n = total number of objects
- r = number of objects to be chosen
- n≥r≥0
| Property | Formula |
|---|
| Symmetry | (rn)=(n−rn) |
| Choosing none | (0n)=1 |
| Choosing all | (nn)=1 |
- Permutation nPr: order matters (arrangements)
- Combination nCr: order does not matter (selections)
nPr=(n−r)!n!nCr=r!(n−r)!n!
Combinations are used in:
- Lottery odds: Choosing 6 numbers from 49 gives (649)=13,983,816 possible tickets.
- DNA sequences: Selecting bases to form codons.
- Team selection: Picking players for a sports team from a squad.