// CONCEPT // COUNTING & PROBABILITY
PERMUTATIONS & COMBINATIONS
Ordered and unordered counting — when to use which.
The two formulas
- Permutations (order matters): the number of ways to arrange items chosen from distinct items is
- Combinations (order doesn't matter): the number of ways to choose items from distinct items is
The relationship: — divide out the orderings you're not distinguishing.
When to use which
- "How many ways to arrange / line up / order?" → permutation.
- "How many ways to choose / pick a team / a subset?" → combination.
- "How many distinct seating arrangements around a round table?" → circular permutation, which is because rotations are equivalent.
Worked example
A 4-person committee is chosen from a group of 10. How many different committees are possible?
Order doesn't matter (committees are unordered), so the answer is
Common trap
If the problem says "the committee has a chair, a treasurer, and two members," you are picking roles — that's an ordered situation in disguise. Use permutations (or pick the chair, then the treasurer, then a combination for the remaining two).