Returns the number of permutations for a given number of objects.
Синтаксис
PERMUT(number, number_chosen)Аргументы
numberобязательно
An integer that describes the total number of objects.
number_chosenобязательно
An integer that describes the number of objects in each permutation.
The PERMUT function calculates the number of ways to select a specified number of items from a set of objects where the order of selection matters. It is commonly used in probability theory and combinatorics to determine possible arrangements.
=PERMUT(10, 2)→90Calculates the number of permutations of 10 items taken 2 at a time.
Select the cell
Click on the cell where you want to display the result.
Enter the formula
Type =PERMUT(number, number_chosen) and replace the arguments with your values.
Yes, unlike combinations, permutations consider the order of selection to be significant.