What is "Partial permutation"
Partial permutation refers to selecting and arranging k elements from a set of n elements, where k is less than or equal to n. In a partial permutation, the order of selection matters, meaning that arranging the elements in different orders creates distinct outcomes.
Example of Partial permutation
Let's say we have a basket of 5 different types of apples: {Red, Green, Yellow, Granny Smith, Fuji}. We want to select and arrange 3 apples from this basket in a specific order. (Please note that this "order" matters for Partial permutation.)
- 1: Red, 2: Green, 3: Yellow
- 1: Green, 2: Yellow, 3: Red
- 1: Yellow, 2: Red, 3: Green
- 1: Granny Smith, 2: Fuji, 3: Red
- 1: Fuji, 2: Granny Smith, 3: Green
- ...
etc.
Actually there are 60 different ways to select and arrange 3 apples from the basket. This is the Partial permutation.
What is "Partial" in partial permutation
- (Not partial but full) permutation: You're arranging all the elements of a set.
- Partial permutation: You're selecting and arranging only a subset of the elements from a larger set.
How the partial permutation is calculated
Partial permutation, how many possible ways of selecting and arranging k elements from a set of n elements exist are often denoted by:
What is "Combination with repetition"
"Combination with repetition" refers to selecting a certain number of objects from a set where the order of selection doesn't matter, and repetitions are allowed.
Example of combination with repetition
Let's say we have a basket of 5 different types of apples: {Red, Green, Yellow, Granny Smith, Fuji}. We want to select and arrange 3 apples from this basket. But the order doesn't matter this time, so, for example, {Green, Yellow, Fuji} and {Yellow, Green, Fuji} are considered to be same because the difference is only its order.
- Red, Green, Yellow
- Granny Smith, Fuji, Red
- Yellow, Granny Smith, Green
- ...
etc.
How the combination with repetition is calculated
Combination with repetition (selecting k elements from a set of n elements) is often denoted by:
So, when we select 3 apples out of 5, the number of possible combinations are:
What if there is no disctintion among the apples
References
Wikipedia, "Partial permutation", 2024 Apirl 30th visited