Explanation
A permutation is an ordered arrangement of objects.
Formula:
nPr = n! / (n − r)!
-
n = total objects
-
r = objects chosen
Example:
3 people, arrange 2 → 3P2 = 3! / (3 − 2)! = 6
Quiz
-
Are permutations ordered or unordered?
-
Write the formula for permutations.
-
5 objects, choose 3 → 5P3 = ?
-
What does “!” mean?
-
Does order matter?
Answer Key
-
Ordered
-
nPr = n! / (n − r)!
-
5! / 2! = 120 / 2 = 60
-
Factorial (multiply all positive integers ≤ number)
-
Yes