counting
Permutations
You should know: counting principles
Overview
A permutation is an arrangement of objects where order matters. The number of ways to arrange n distinct objects in a sequence is n! (n factorial), and the number of ways to arrange r of them out of n is denoted P(n,r) or ₙPᵣ. Permutations are the 'order matters' counterpart to combinations.
Intuition
Think of arranging 3 books (A, B, C) on a shelf. ABC and BAC use the same books but are different arrangements — order matters, so they're counted separately. There are 3! = 6 total arrangements. If you're only choosing 2 of the 3 books to place in a row, order still matters (AB ≠ BA), giving P(3,2) = 6 arrangements as well.
Formal Definition
The number of ways to arrange r objects chosen from n distinct objects, where order matters:
Arranging all n objects
Notation
| Notation | Meaning |
|---|---|
| Number of ordered arrangements of r objects from n | |
| n factorial, with 0! defined as 1 |
Properties
Factorial growth
Example: 5! = 5 \cdot 4! = 120
Permutations with repetition
Applications
Worked Examples
All 4 are arranged, so use 4!.
Answer: 24
Practice Problems
How many distinct arrangements are there of the letters in 'BOOK'?
In a race with 8 runners, how many different ways can the gold, silver, and bronze medals be awarded?
A project manager must order 6 distinct tasks into a sequence (no two at once). How many possible schedules exist?
Common Mistakes
Confusing permutations with combinations.
Permutations count ORDERED arrangements (AB ≠ BA); combinations count unordered selections (AB = BA). Use P(n,r) when order matters, C(n,r) when it doesn't.
Quiz
Summary
- A permutation is an arrangement of objects where order matters.
- P(n,r) = n!/(n-r)! counts arrangements of r objects chosen from n.
- P(n,n) = n! arranges all n objects.
- Repeated elements reduce the count by dividing by the factorial of each repeat count.
References
- WebsiteWikipedia — Permutation
Mathematics