The permutation formula
A permutation counts arrangements where order is significant. Arranging A, B, C is different from C, A, B. The formula multiplies n × (n−1) × (n−2) × … for r factors, which equals n! / (n−r)!.
For example, P(10,3) = 10 × 9 × 8 = 720. There are 720 different ways to arrange 3 items chosen from 10.
P(n, r) = n! / (n − r)!
The number of ordered arrangements of r items chosen from n items.