You are here

Permutation

23 November, 2015 - 16:33

A permutation is an arrangement of all or part of a set of n objects, with regard to the order of the arrangement and without repetition. That is, the order in which we arrange objects is important.

Notations for permutations

1. The number of different arrangement of a set of n distinct objects is given by
  (n)(n - 1)(n - 2)...(3)(2)(1) = n!\ ways,
  where n! is called the 'n factorial'.
2. The number of permutations of a set of n distinct objects taken r at a time, denoted the permutation by P(n, r) or Prn, where repetitions are not allowed, is given by
 

P(n, r) = n(n - 1)(n - 2)...(n - r + 1) = \frac{n!}{(n-r)!}

  Note: P(n, r) = n!
  

Example 5

Consider arranging 3 letters: A, B, C.

How many different ways can this be done, assuming that repetitions are not allowed?

media/image2.png

As you can see, there are 6 possible permutations if we have three letters, and no repetitions.

We can get the answer without listing out all the elements by using the permutation formula

P(n,r) = \frac{n!}{(n-r)^{!}}

The number of different ways of a set of 3 distinct objects taken 3 at a time can be arranged without repetition is

\begin{align*} P(3,\: 3)&= \frac{3!}{(3-3)^{!}}\\ &=\frac{3!}{0!}=6\\ \end{align*}

where 0! = 1.