© 2025 Astra.si. All rights reserved.
"For the next generation"
Permutations are a fundamental concept in combinatorics that describe all possible ordered arrangements of elements in a given set. In permutations, all elements are used, and their arrangement is important. Every change in the order of elements creates a different permutation, which distinguishes them from combinations, where order does not matter.
If we have n distinct elements, the number of all possible permutations of these elements is: P(n) = n! (n factorial) where n! = n * (n – 1) * (n – 2) * … * 2 * 1
How many different arrangements of the letters A, B, and C exist? n = 3 → P(3) = 3! = 6 The permutations are: ABC, ACB, BAC, BCA, CAB, CBA.
If a set contains repeating elements, then swapping identical elements does not create a new permutation. In this case, the number of permutations is reduced by dividing by the factorials of the number of repetitions.
If we have n elements, of which:
then the formula is: P(n; r₁, r₂, …, rₖ) = n! / (r₁! * r₂! * … * rₖ!)
How many different permutations does the word MAMA have? Letters: M appears 2 times, A appears 2 times → n = 4, r₁ = 2, r₂ = 2 P = 4! / (2! * 2!) = 24 / (2 * 2) = 6 The permutations are: MAMA, MAAM, AMMA, AAMM, AMAM, MMAA.
When we arrange elements in a circle, we are dealing with circular permutations. In a circle, rotations of the same arrangement are not considered new permutations.
For n distinct elements in a circle, the formula is: P_circular(n) = (n – 1)!
Example: Arranging 5 people around a table → (5 – 1)! = 4! = 24 possibilities.
Permutations are used for:
Permutations represent all possible ways of ordering elements where the sequence is crucial. The number of permutations grows rapidly with the number of elements. Understanding the different forms of permutations is essential for effectively solving combinatorial problems.