Permutations and combinations
🎯What you need to be able to do
- Decide whether order matters, and so whether to use a permutation or a combination.
- Count arrangements of \(n\) distinct objects, and of \(r\) chosen from \(n\).
- Count arrangements when some objects are identical.
- Handle restrictions: objects together, objects apart, fixed positions, at least/at most.
- Count selections where order does not matter, including from separate groups.
- Use counting results to calculate probabilities.
📚The mathematics
The central question
Before any formula, ask: would swapping two of the chosen items give a different outcome?
- Yes — order matters — it is a permutation (arrangement). Words like arrange, order, line up, code, first/second/third, or distinct roles such as chair and secretary.
- No — order does not matter — it is a combination (selection). Words like choose, select, committee, team, sample.
Getting this wrong is not a small error: the two answers differ by a factor of \( r! \).
The formulae
Note \( 0! = 1 \) by convention, and \( ^{n}C_r = {}^{n}C_{n-r} \) — choosing which 3 of 10 to take is the same as choosing which 7 to leave, which often saves arithmetic.
The relationship \( ^{n}P_r = {}^{n}C_r \times r! \) says exactly what the distinction is: first choose the \(r\) objects, then arrange them.
Repeated objects
The number of distinct arrangements of \(n\) objects of which \(p\) are alike of one kind, \(q\) alike of another, and so on, is
So the letters of BANANA give \( \dfrac{6!}{3!\,2!} = 60 \) arrangements — three A's and two N's. Divide by a factorial for each repeated letter; missing one inflates the answer by exactly that factor.
Restrictions
Three standard techniques, and choosing the right one is most of the difficulty:
- Objects must be together — treat the block as a single item, arrange everything, then multiply by the arrangements within the block. Two people who must sit together among 6: \( 5! \times 2! = 240 \).
- Objects must be apart — usually easiest as total minus together. For the same 6 people, \( 6! - 240 = 480 \). Alternatively, arrange the others first and slot the restricted items into the gaps between them.
- Fixed positions — deal with the restricted positions first, then fill the rest. If a number must be even, choose the last digit first.
Selections from separate groups
When choosing from distinct groups, multiply the independent choices. To pick 3 from 7 men and 2 from 5 women: \( ^{7}C_3 \times {}^{5}C_2 = 35 \times 10 = 350 \).
When several cases satisfy the condition, count each and add. “A committee of 4 with at least 2 women” means exactly 2, exactly 3, and exactly 4 women, each computed separately and summed. Multiply within a case, add between cases — that one rule organises the whole topic.
Using counting for probability
With equally likely outcomes,
Count numerator and denominator the same way — both as permutations or both as combinations. Mixing the two is the classic error here, and it produces a probability that may not even lie between 0 and 1, which is itself a useful check.
✏️Worked example
(a) Order does not matter for a committee, so this is a combination:
(b) With only 4 women available, “at least 3” means exactly 3 or exactly 4. Count each case and add:
Total \( = 66 \) ways.
(c) Exactly 2 women means 2 women and 3 men:
so the probability is \( \dfrac{120}{252} = \dfrac{10}{21} = 0.476 \).
(d) This part is about arrangement, so it is a permutation — the switch from (a) to (d) is exactly the distinction this topic turns on. Treat the two women as a single block. That leaves 4 items to arrange (the block plus 3 men), and the women can be ordered two ways inside the block:
📝Practise
Work through these, then reveal the answer.
1. How many different arrangements are there of the letters of the word STATISTICS?
2. In how many ways can 8 people be seated in a row if two particular people must not sit next to each other?
3. How many 4-digit numbers greater than 3000 can be formed from the digits 1, 2, 3, 4, 5 without repetition?
4. A team of 4 is chosen from 5 boys and 6 girls. Find the number of teams containing at least one boy.
5. Five cards are drawn from a set of ten cards numbered 1 to 10. Find the probability that all five are odd.
6. In how many ways can 6 people be arranged in a row if two particular people, A and B, must sit together and a third person C must sit at one of the ends?
🔗Go deeper — other people’s work
These are external resources, not mine. If one stops working, tell me and everything above it on this page still stands.
- Khan Academy — permutations, combinations and counting principles
- Brilliant — combinatorics problems with worked solutions
- Cambridge examiner reports — the permutation/combination confusion is flagged nearly every session