[Home]Permutations

HomePage | Recent Changes | Preferences

Showing revision 3
A permutation is a sequence of elements in which no element appears twice. In a sequence, unlike in a set, the order in which the elements are written down matters. Suppose you have a total of n distinct objects at your disposal and you want to create permutations of k elements selected from those n, where kn. In how many ways can that be done?

  1. We can select the first member of the list in n ways because there are n distinct elements.
  2. The second member of the list can be filled in (n-1) ways since we have used up one of the n elements already.
  3. The third member can be filled in (n-2) ways since 2 have been used already.
  4. This pattern continues until there are k names on the list. This means that the last member can be filled in (n-k+1)'' ways.
Summarizing, we find that a total of
n * (n-1) * (n-2) * ... * (n-k+1)
different permutations of k objects, taken from a pool of n objects, exist. If we denote this number by nPk and use the factorial notation, we can write
nPk = n! / (n-k)!


See also Combinations.

HomePage | Recent Changes | Preferences
This page is read-only | View other revisions | View current revision
Edited August 9, 2001 10:15 pm by AxelBoldt (diff)
Search: