Combinatorics Scenarios

Explore various combinatorics scenarios and their applications in problem-solving.

Table of Contents




Permutation (Full)

Arrangement of n distinct items in n places

Formula: n!

Example: For n=4: 4! = 24 arrangements

Use Case: Arranging books on a shelf, determining race finish orders

For more details, see the Combinatorics Table and the Combinatorics Diagram.




Permutation with Repetition

Arrangement of n items where some are identical

Formula: n! / (n1! * n2! * ... * nx!)

Example: For n=4 with 2 A's and 2 B's: 4! / (2! * 2!) = 6 arrangements

Use Case: Arranging letters in words with repeated letters

For more details, see the Combinatorics Table and the Combinatorics Diagram.




Permutation without Repetition

Picking r different items from n items where order matters

Formula: P(n,r) = n! / (n-r)!

Example: For n=5, r=3: 5! / (5-3)! = 60 arrangements

Use Case: Selecting and arranging podium finishers from a group of runners

For more details, see the Combinatorics Table and the Combinatorics Diagram.




Combination

Picking r different items from n items where order doesn't matter

Formula: C(n,r) = n! / (r! * (n-r)!)

Example: For n=5, r=3: 5! / (3! * 2!) = 10 combinations

Use Case: Selecting a committee from a group of people

For more details, see the Combinatorics Table and the Combinatorics Diagram.




Partition into Groups

Dividing n distinct items into r distinguishable groups

Formula: S(n,r) (Stirling number of the second kind)

Example: For n=4, r=2: S(4,2) = 7 partitions

Use Case: Dividing students into different classes

For more details, see the Combinatorics Table and the Combinatorics Diagram.




Distribution into Cells

Distribution of n different items into r numbered cells

Formula: r^n

Example: For n=3, r=2: 2^3 = 8 distributions

Use Case: Assigning tasks to specific days of the week

For more details, see the Combinatorics Table and the Combinatorics Diagram.




Weak Composition

Distribution of n identical items into r cells, empty cells allowed

Formula: C(n+r-1, r-1)

Example: For n=5, r=3: C(7,2) = 21 compositions

Use Case: Distributing identical candies among children, allowing some to receive none

For more details, see the Combinatorics Table and the Combinatorics Diagram.




Strong Composition

Distribution of n identical items into r cells, no empty cells

Formula: C(n-1, r-1)

Example: For n=5, r=3: C(4,2) = 6 compositions

Use Case: Distributing identical tasks among team members, ensuring everyone gets at least one

For more details, see the Combinatorics Table and the Combinatorics Diagram.




Circular Permutation

Arranging n different items in a circle

Formula: (n-1)!

Example: For n=4: 3! = 6 arrangements

Use Case: Seating arrangements around a circular table

For more details, see the Combinatorics Table and the Combinatorics Diagram.




Combinatorics Diagram

This diagram provides a visual overview of the relationships between different combinatorics scenarios. For detailed formulas and examples, refer to the Combinatorics Table below or the individual sections above.




Combinatorics Table

ScenarioDescriptionFormulaExampleUse Case
Permutation (Full)Arrangement of n distinct items in n placesn!For n=4: 4! = 24 arrangementsArranging books on a shelf, determining race finish orders
Permutation with RepetitionArrangement of n items where some are identicaln! / (n1! * n2! * ... * nx!)For n=4 with 2 A's and 2 B's: 4! / (2! * 2!) = 6 arrangementsArranging letters in words with repeated letters
Permutation without RepetitionPicking r different items from n items where order mattersP(n,r) = n! / (n-r)!For n=5, r=3: 5! / (5-3)! = 60 arrangementsSelecting and arranging podium finishers from a group of runners
CombinationPicking r different items from n items where order doesn't matterC(n,r) = n! / (r! * (n-r)!)For n=5, r=3: 5! / (3! * 2!) = 10 combinationsSelecting a committee from a group of people
Partition into GroupsDividing n distinct items into r distinguishable groupsS(n,r) (Stirling number of the second kind)For n=4, r=2: S(4,2) = 7 partitionsDividing students into different classes
Distribution into CellsDistribution of n different items into r numbered cellsr^nFor n=3, r=2: 2^3 = 8 distributionsAssigning tasks to specific days of the week
Weak CompositionDistribution of n identical items into r cells, empty cells allowedC(n+r-1, r-1)For n=5, r=3: C(7,2) = 21 compositionsDistributing identical candies among children, allowing some to receive none
Strong CompositionDistribution of n identical items into r cells, no empty cellsC(n-1, r-1)For n=5, r=3: C(4,2) = 6 compositionsDistributing identical tasks among team members, ensuring everyone gets at least one
Circular PermutationArranging n different items in a circle(n-1)!For n=4: 3! = 6 arrangementsSeating arrangements around a circular table

For more detailed explanations of each scenario, click on the scenario names in the table or refer to the individual sections above. You can also check the Combinatorics Diagram for a visual representation.