Here is a list of all problems that occur in Combinatorics that is really useful for arranging polynomials :
Problem 1) Arranging n people (Permutation)
Supposed we have 3 people in a line, what is the total number of ways to arrange them? Ex ) Let Alice, Bob, Carl be people, how many different ways can we arrange them in a line . Why? 3 choices for the first slot, 2 choices for the second slot, 1 choice the the 3rd slot :
In general, to arrange n people, we have n! steps
| Alice | Bob | Carl |
|---|---|---|
| Alice | Carl | Bob |
| Bob | Alice | Carl |
| Bob | Carl | Alice |
| Carl | Alice | Bob |
| Carl | Bob | Alice |
Problem 2) Picking k people from a group of n people
Suppose there are 4 people, what is the number of ways we can pick to people? Ex) Lets Say Alice, Bob, Carl, Dan Note : Alice + Bob = Bob + Alice
- Alice + Bob, Alice + Carl, Alice + Dan, Bob + Carl, Bob + Dan, Carl + Dan We have 6 different unique combination!
General Formula : : This describes the problem of choosing k people for a group of n people. Also referred to as “N choose K”
Pascals Reccurance
Problem 3) Filling boxes with balls (Compositions)
Suppose you have 4 balls and 2 boxes, how many total ways can you fill the 2 boxes with all 4 balls such that at least every box has a ball? ex) Let be box 1, be box 2 Method 1) Balls and Boxes General Form : Given and such that is So from the previous example we get : This problem is also known as the number of compositions of a number. For example, what is the number of ways you can create 4 using positive integers : And if you notice, there are 3 ways to decompose 4 into 2 numbers! Question 4 : Suppose we have the equation . What is the total number of solutions to solve this equation? Answer : 6 balls, 4 boxes,,
Problem 4) Filling boxes with balls, but boxes can be empty (Weak Compositions)
Suppose you have 4 balls and 2 boxes, how many ways can we put balls in boxes. (boxes can be empty!) Ex) , 5 ways! General problem : If we are given and , then From our example we should get that
Question 2) Suppose we have the equation . What are the total number of solutions: Answer : let . Now suppose we add 4 more balls into our system, and put 1 in every box. Our total number of balls are now 14! it now becomes a Problem 3 question with 14 balls and 4 boxes :
Problem 5) Partitions
Source : https://www.whitman.edu/mathematics/cgt_online/book/section03.03.html Suppose we have 5, what is the number of unique ways to partition 5 into positive integers? We denote the number of partitions for a number p ad , so In this example, there is no clear way to find the number of total partitions for a given integers, however there are analogies to something called generating functions. Example : examine : If we expand it out, then it looks like this
| WIth Exculsion | Without Exclusion | |
|---|---|---|
| Distinguishable Balls Distinguishable Boxes | ||
| Indistinguishable Balls Distinguishable Boxes |
Sources :