Permutations & Combinations
Permutations and combinations count the number of ways to select items from a set. The key difference: order matters for permutations, not for combinations.
Formulas
- Permutation: nPr = n! / (n−r)! — order matters
- Combination: nCr = n! / (r!(n−r)!) — order doesn't matter
- nPr = nCr × r! (permutations = combinations × arrangements)
Examples
- Permutation: Arranging 3 books on a shelf from 10 books
- Combination: Choosing 3 people for a committee from 10
- Lottery: Choosing 6 numbers from 49 (combination = 13,983,816)
- PIN codes: 4-digit PIN from 10 digits (permutation with repetition)
Quick Test 💡
Ask yourself: "Does the order of selection change the outcome?" If picking a president, VP, and treasurer — order matters (permutation). If picking a 3-person team — it doesn't (combination).