Permutations

Permutation without Repetition

A permutation is an arrangement, or listing, of n distinct objects in which the order is important.

Total number of permutations in case of n elements:

Pn=n·(n1)·(n2)·...·2·1=n!

Example:

In case of 4 elemts: {a,b,c,d}: n=4,P4=4!=4·3·2·1=24

abcd bacd cabd dabc
abdc badc cadb dacb
acbd bcad cbad dbac
acdb bcda cbda dbca
adbc bdac cdab dcab
adcb bdca cdba dcba

Permutation with Repetition

A permutation is an arrangement, or listing, of n objects in which the order is important. The elements are repeated. Number of repetations:

k1,k2,k3,...,kr;(k1+k2+k3+...+krn)

Total number of permutations:

Pnk1,k2,k3,...,kr=n!k1!·k2!·k3!·...·kr!

Example:

In case of 7 elemet: {a,a,a,a,b,b,c} first element repeats 4 times, second element repeats 2 times: n=7,k1=4,k2=2,k1=1

Total number of permutations:

P74,2,1=7!4!·2!·1!=105
Keywords: Permutation without Repetition with Repetition