A permutation is an arrangement of objects in a specific order.
Permutation of n objects taking r at a time (r≤n):
P(n,r)=nPr=(n−r)!n!
Example 4:
a) P(5,3)=(5−3)!5!=2120=60
b) P(10,8)=(10−8)!10!=2!10!=1,814,400
Example 5: 8 students on 6 chairs: P(8,6)=2!8!=20,160 ways.
Permutation of n objects taking n at a time:
P(n,n)=n!
Example 6: 5 books arranged 5 at a time: P(5,5)=5!=120 ways.
Permutations with alike objects:
If there are n objects with r alike objects of one kind and q alike objects of another kind, the number of permutations is:
r!q!n!
Example 7: "MOROGORO" has 8 letters, 4 "O"s, and 2 "R"s: 4!2!8!=840 patterns.