Admin 01 Jun 2026 07:40

 

Permutations of Distinct Elements

A permutation is an arrangement of all the members of a set into a sequence or order. When the elements are all different (no repetitions), the counting is especially simple and forms the basis for much of elementary combinatorics.

Basic Counting Principle

Suppose we have a set with n distinct objects. To form a permutation we must decide which object occupies the first position, then which occupies the second, and so on.

  1. There are n choices for the first position.
  2. After fixing the first object, n1 objects remain, giving n1 choices for the second position.
  3. Continuing this process, the third position has n2 choices, etc.

Multiplying these choices together (the multiplication principle) yields the total number of permutations:

Formula: n! = n (n1) (n2) 2 1

Examples

Example 1 3 letters
The set {A, B, C} has 3! = 6 permutations:
  • ABC
  • ACB
  • BAC
  • BCA
  • CAB
  • CBA
Example 2 5 books on a shelf
Five different books can be arranged in 5! = 120 ways.

Partial Permutations (Arrangements)

Sometimes we are interested in ordering only a subset of the elements. The number of ways to choose and order k items from n distinct items is called a partial permutation or arrangement:

Formula: P(n,k) = n (n1) (nk+1) = \frac{n!}{(nk)!}

Example: From 8 different players, we want to pick a starting lineup of 5 in order of batting. The number of possible lineups is P(8,5) = 8! / 3! = 6720.

Why Distinctness Matters

If some objects are identical, the simple n! count overestimates the true number of distinguishable permutations. In that case we divide by the factorial of the multiplicities:

Formula for repeated elements: \frac{n!}{n_1! \, n_2! \, \, n_r!} where n_i is the count of the ith identical type.

When all elements are different, each n_i = 1 and the denominator equals 1, reducing the formula to n!.

Applications

  • Sorting problems the number of possible orderings of a list.
  • Cryptography permutations form the basis of many cipher algorithms.
  • Scheduling arranging distinct tasks or events in time slots.
  • Games determining the number of possible board states when pieces are distinct.

Generating Permutations Programmatically

In many programming languages, generating all permutations of a distinct list is straightforward. Below is a concise example in Python using itertools.permutations:

import itertoolsitems = ['A', 'B', 'C']for p in itertools.permutations(items):    print(p)

The output matches the six permutations listed earlier.

Properties of Permutations

  • Even and odd permutations: Based on the number of transpositions needed to reach the arrangement.
  • Cycle notation: Any permutation can be expressed as a product of disjoint cycles.
  • Group structure: The set of all permutations of n objects forms the symmetric group S_n, a fundamental object in abstract algebra.

Practice Problems

  1. How many ways can 7 distinct medals be awarded to 7 athletes? (Answer: 7!)
  2. From the letters of the word BRIGHT, how many different 4letter words can be formed when order matters? (Answer: P(6,4) = 360)
  3. A committee of 3 is to be chosen from 10 distinct members, and then a chairperson is selected from the three. How many possible outcomes are there? (Answer: P(10,3) = 720)

Conclusion

Permutations of distinct elements are a cornerstone of combinatorial reasoning. The simple factorial formula captures the intuition that each new position reduces the pool of available choices by one. Mastery of this concept opens the door to more advanced topics such as combinations, the inclusionexclusion principle, and the study of symmetric groups.

Reference Files For Permuta Si Dari Unsur Yang Berbeda
Screenshoot
File Name
12027_permutasi.pptx

File Size MB

File Type
PPTX

File Site
Description
This file is just a reference file for Permuta Si Dari Unsur Yang Berbeda. Does not guarantee that the specific things you want are included in it.
Direct download (wait 10 seconds)

Camelid TB Serology Package and Reference File Download Link

Apa Itu Pegadaian dan Link Download File Referensi

Sistem Gerak dan Link Download File Referensi

Apa Itu Retroperitoneal dan Link Download File Referensi

Apa Itu Soal dan Link Download File Referensi