🕐 11 min read | Class 10–12 | FBISE · CBSE · IGCSE · O-Levels · IB
How many ways can five runners finish a race in first, second, and third place? How many three-person committees can be chosen from a group of ten? Both questions involve selecting from a group — but the first problem cares about order (gold, silver, bronze are different outcomes), while the second does not (the same three people form the same committee regardless of which order they were chosen). This single distinction — whether order matters — separates permutations from combinations, and it is the key to unlocking an entire branch of mathematics.
Factorial Notation — The Foundation
Before permutations and combinations, you need to understand factorial notation. The factorial of a positive integer n (written n!) is the product of all positive integers from 1 up to n.
Examples: 4! = 4×3×2×1 = 24 | 5! = 120 | 0! = 1 (by definition)
Factorial counts the number of ways to arrange n distinct items in a line. 4 books can be arranged on a shelf in 4! = 24 different orders.
Permutations — When Order Matters
A permutation is an arrangement of items where the order of selection matters. The number of ways to arrange r items chosen from n distinct items is:
Step-by-Step Example — Permutation
In a race with 8 runners, how many ways can the gold, silver, and bronze medals be awarded?
Identify n and r: n = 8 runners, r = 3 positions. Order matters (1st ≠ 2nd ≠ 3rd).
Apply the formula:
⁸P₃ = 8! / (8−3)! = 8! / 5!
Simplify:
= (8 × 7 × 6 × 5!) / 5! = 8 × 7 × 6 = 336
There are 336 different ways to award the three medals from 8 runners.
Combinations — When Order Does Not Matter
A combination is a selection of items where the order does not matter. Choosing team members, picking lottery numbers, or forming a committee — none of these depend on order. The formula divides the permutation count by r! to remove the overcounting caused by different orderings of the same group:
Also written as C(n, r) or "n choose r"
Step-by-Step Example — Combination
A school selects 3 students from a class of 10 to represent the school at a conference. How many ways can this group be chosen?
Identify n and r: n = 10 students, r = 3. Order does not matter (the same three students form the same group).
Apply the formula:
¹⁰C₃ = 10! / (3! × 7!)
Simplify:
= (10 × 9 × 8) / (3 × 2 × 1) = 720 / 6 = 120
There are 120 different ways to choose the 3 students. Notice this is much less than ⁱ⁰P₃ = 720, because combinations don't count different orderings of the same group.
Permutation vs Combination — The Key Question
| Scenario | Order Matters? | Use |
|---|---|---|
| Medal positions in a race | Yes | Permutation |
| Arranging books on a shelf | Yes | Permutation |
| PIN codes and passwords | Yes | Permutation |
| Choosing a committee | No | Combination |
| Selecting lottery numbers | No | Combination |
| Picking a group to travel | No | Combination |
Real-Life Applications
-
🔐
Cybersecurity: Password strength is calculated using permutations — a 6-character PIN using digits 0–9 has 10⁶ = 1,000,000 possibilities because order matters.
-
🃏
Card games and probability: The number of possible 5-card poker hands is ⁵²C₅ = 2,598,960. Combinations underpin all card game probability calculations.
-
💊
Medicine: When testing drug combinations, researchers use combinations to count how many distinct pairings or triplings of n candidate drugs are possible.
-
🏆
Sports scheduling: The number of unique matches in a round-robin tournament with n teams is ⁿC₂ — combinations, because Team A vs Team B is the same match as Team B vs Team A.
Common Mistakes Students Make
Frequently Asked Questions
Try the Permutation & Combination Calculator
Enter n and r to instantly compute ⁿPᵣ and ⁿCᵣ — with full step-by-step factorial working so you can follow the method clearly.
🔀 Open the Calculator →