Find the number of 5-permutations of a set with nine elements

This is another simple exercise. To solve it, we just need to apply the formula to calculate the number of 3-permutations.

“If n and r are integers with 0 ≤ r ≤ n, then P(n,r) = n! / (n−r)! ”. Discrete mathematics and its applications by Rosen.

Answer:

We just need to calculate the number of 5-permutations of 9 elements.

P(9,5) = 9!/(9-5)!

=9x8x7x6x5x4!/4!

=9x8x7x6x5

=15 120

Related exercises: