Permutations vs combinations
- This is the main decision in the chapter: does order matter?
- If order matters, use . If order does not matter, use.
- A combination is a permutation with the extra orderings divided out.
P arranges; C chooses
- Start with one question: would swapping the chosen objects make a new answer?
- If swapping changes the answer, order matters, so use. If swapping does not change the answer, order is ignored, so use .
- Case splits are a later step. First learn the small difference between and .
. The removes the order of the chosen group.
| Question wording | Order? | Use |
|---|---|---|
| arrange, code, row, queue, seats, podium | yes | |
| choose, select, team, committee, hand, group | no | |
| several independent choices | depends on each choice | multiply the counts |
| at least / at most | case split | add legal cases only |
choose: ⁿCr = 10×r! = 6=arrange: ⁿPr = 60
Worked example
First rung: three letters
- Arrange 2 letters from A, B and C. AB and BA are different, so order matters:.
- Choose 2 letters from A, B and C. AB and BA are the same pair, so order does not matter:.
Answer
Worked example
Same pool, different question
- Arrange 3 digits from 7 digits:.
- Choose 3 fish from 7 fish:.
Answer
- For several independent choices, count each part and multiply. Choosing 2 boys from 6 and 1 girl from 4 gives.
- For at least or at most, list the legal splits first. The formula comes after the split is clear.
Worked example
Small case split
Choose 3 musicians from 5 violinists and 4 guitarists. The group needs at least 2 violinists.
- Legal split 1: 2 violinists and 1 guitarist:.
- Legal split 2: 3 violinists and 0 guitarists:.
- Add the legal cases because they cannot happen at the same time:.
Answer
Exam version of the same split
- The real-paper version below is the same idea as the small split: write every legal split, count each split, then add.
- Choose 5 students from 10 violinists, 6 guitarists and 5 pianists. The group needs at least 2 violinists, at least 1 guitarist and at most 1 pianist. (9709/52/O/N/24 Q5(b))
| Split (V,G,P) | Ways |
|---|---|
| (4,1,0) | |
| (3,2,0) | |
| (2,3,0) | |
| (3,1,1) | |
| (2,2,1) |
Answer
Common mistake
Do not add a stray to a team or group question. The group is already chosen; its order is ignored.