6. Permutations
Sign In
The value of the permutation 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.
95 040
Let's use this fact to find the value of P( 12, 5). We will write the product of 5 numbers that starts with 12, and each next number in the product is one less than the previous one. P( 12, 5) = 12 * 11 * 10 * 9 * 8_(5numbers) Now, let's calculate this product. P(12,5) = 95 040