Permutations without repetition

The permutations without repetition of n elements are the different groups of n elements that can be done, so that two groups differ from each other only in the order the elements are placed.

For example,

Example

Let's consider the set A={a,b,c,d,e}. Then the permutations of these 5 elements are: abcde, acbde, dbeca, adcea, bedac, cdbae, caebd, edabc, etc...

The number of permutations of n elements is given by the following formula: Pn=n!=n(n1)(n2)21

Example

In the previous example, then, n=5 , and therefore: P5=5!=54321=120 Namely, 60 permutations of the elements can be done with A={a,b,c,d,e}.