TRUECALC
Functions

PERMUT

Number of permutations

Try it

When to use it

When should I use PERMUT?

Use PERMUT to count ordered arrangements of k items chosen from n distinct items without repetition, such as calculating how many ways a podium of 3 can be filled from 10 competitors.

Used in

science · operations

Syntax

PERMUT(n,k)

Examples

=PERMUT(4,2) // => 12
=PERMUT(10,3) // => 720
=PERMUT(5,0) // => 1

On this page