A combination is a selection of objects where order does not matter.
The number of ways to choose r objects from n distinct objects is:
(rn)=r!(n−r)!n!
- (0n)=1
- (nn)=1
- (rn)=(n−rn) (symmetry property)
- (rn)+(r−1n)=(rn+1) (Pascal's identity)
Problem: In how many ways can a committee of 3 be selected from 8 people?
Solution:
Since order does not matter, we use combinations:
(38)=3!⋅5!8!=3×2×18×7×6=6336=56
So there are 56 ways to form the committee.
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: Choosing players from a squad without regard to position.