Property
An ordering of objects is called a permutation. Given n distinct objects, the number of ways to select r objects from the set in order is
P(n,r)=(n−r)!n! To solve, first determine the total number of options, n. Then determine the number of options being selected, r. Finally, substitute these values into the formula and evaluate.
Examples
- In a race with 8 runners, the number of ways to award gold, silver, and bronze medals is P(8,3)=(8−3)!8!=336.
- A manager needs to schedule 4 out of 7 employees for four different shifts. The number of ways she can assign them is P(7,4)=(7−4)!7!=840.
- A child has 6 different toy cars and wants to line up 3 of them on a shelf. The number of possible arrangements is P(6,3)=(6−3)!6!=120.
Explanation
Permutations count arrangements where the order of selection is important. Think of it like awarding 1st, 2nd, and 3rd place ribbons in a race—who gets which ribbon matters. The formula calculates all possible ordered arrangements.