6. Permutations
Sign In
The number of permutations P(n,r) is the product of r numbers that starts with n, and each next number in the product is one less than the previous one.
120
The number of permutations P(n,r) is the product of r numbers that starts with n, and each next number in the product is one less than the previous one.
P(n,r) = n * (n-1) * ⋯ * (n-(r-2)) * (n-(r-1))_(rnumbers)