Master the art of arranging objects in different orders
Permutations are arrangements of objects in a specific order. The order matters in permutations, making them different from combinations.
nPr = n!/(n-r)!
where:
n! = n × (n-1) × (n-2) × ... × 2 × 1
Examples:
| n | n! |
|---|---|
| 0 | 1 |
| 1 | 1 |
| 2 | 2 |
| 3 | 6 |
| 4 | 24 |
| 5 | 120 |
| 6 | 720 |
| 7 | 5,040 |
| 8 | 40,320 |
| 9 | 362,880 |
| 10 | 3,628,800 |
n^r
where:
How many 3-digit numbers can be formed using digits 1-5?
5^3 = 125 numbers
n! = n × (n-1) × (n-2) × ... × 2 × 1
n!/(n₁! × n₂! × ... × nₖ!)
where:
How many different words can be formed using all letters of "MISSISSIPPI"?
11!/(4! × 4! × 2!) = 34,650 words
(n-1)!
(n-1)!/(n₁! × n₂! × ... × nₖ!)
In how many ways can 5 people sit around a circular table?
(5-1)! = 4! = 24 ways
(n-r)! × r!
where:
Use the following steps:
How many ways can 5 people sit in a row if two specific people must sit together?
4! × 2! = 48 ways
5! = 5 × 4 × 3 × 2 × 1 = 120 ways
4!/(2! × 1! × 1!) = 12 words
10P3 = 10!/(10-3)! = 720 ways
5P4 = 5!/(5-4)! = 120 numbers
(6-1)! = 5! = 120 ways
(8-1)!/(3! × 1! × 1! × 1! × 1! × 1!) = 840 ways
6! = 720 ways
(5-1)! × 2⁵ = 384 ways
2! × 4! = 48 ways
8! × 4!/(2! × 2!) = 241,920 words
5! × 6P3 = 14,400 ways
3 × 4P3 = 72 numbers
Test your understanding of Permutations with 20 fully solved, step-by-step questions designed for beginners.
Start Practice