67 total
By the end of these notes, you should be able to:
In many real-life situations, we need to count the number of ways something can be done. For example:
These two questions look similar, but they are actually very different. The key question you must always ask is:
Does the order matter?
This single question tells you whether you need a permutation or a combination.
| Permutation | Combination | |
|---|---|---|
| What it counts | Arrangements | Selections |
| Does order matter? | ✅ YES | ❌ NO |
| Keyword clues | arrange, order, rank, sequence, code, queue | choose, select, pick, group, team, committee |
A permutation is a way of arranging items where the order matters.
Think of it this way: if you arrange the letters A, B, C, then ABC and BAC are counted as two different arrangements because the order is different.
Real-life example: Imagine a race with 3 runners — Alice, Bob, and Charlie. The results 1st: Alice, 2nd: Bob, 3rd: Charlie is a completely different outcome from 1st: Bob, 2nd: Alice, 3rd: Charlie. The order in which they finish matters. This is a permutation situation.
Other examples where order matters:
The permutation formula:
When you choose r items from a group of n items and arrange them (order matters), the number of ways is:
nPr=(n−r)!n!
where n! (called n factorial) means: n×(n−1)×(n−2)×⋯×2×1
Quick example: How many ways can you arrange 3 letters chosen from A, B, C, D, E?
Here, n=5 and r=3.
5P3=(5−3)!5!=2!5!=2×15×4×3×2×1=2120=60
So there are 60 different arrangements.
Sign in to view full notes