Permutations
Arrangements where order matters. The three cases: P(n, r) = n!/(n-r)! without repetition, n^r with repetition, and n! when arranging everything.
Arrangements where order matters. The three cases: P(n, r) = n!/(n-r)! without repetition, n^r with repetition, and n! when arranging everything.
A permutation is an arrangement where order matters. Unlike a combination, ABC and BAC count as two different permutations — from the three letters there is one combination but six permutations.
A permutation chooses elements from
with regard to order. The same elements in a new order make a new permutation.
From , the arrangements of all three are ABC, ACB, BAC, BCA, CAB, CBA — six permutations, but only one combination
.
Allowing repetition always gives a larger count, since no choice is ever used up.
A 4-digit job number from the digits 1–9, no digit repeated. Each slot has one fewer choice than the last:
Arranging 3 books chosen from 7
A 3-letter password from {A, B, C, D, E}, no repeats
A 5-digit security code from 0–9, repetition allowed
Arranging all 5 letters of a word (all different)
| Type | Formula | Example | Result |
|---|---|---|---|
| No repetition | n! ÷ (n − r)! | P(9, 4) | 3,024 |
| With repetition | nʳ | 9⁴ | 6,561 |
| Complete (r = n) | n! | P(5, 5) | 120 |