PERMUT

The PERMUT function returns the number of permutations for a given number of objects that can be selected from a total number of objects. Both arguments are number values.

PERMUT(num-objects, num-elements)

num-objects: The total number of objects. num-objects must be greater than or equal to 0.

num-elements: The number of objects to be selected from the total number of objects in each permutation. num-elements must be greater than or equal to 0.

Notes

Examples

=PERMUT(25, 5) returns 6,375,600.

=PERMUT(10, 3) returns 720.

=PERMUT(5, 2) returns 20.

See also
COMBIN
BINOMDIST
CRITBINOM
NEGBINOMDIST
PROB