Combinatorics deals with mathematics surrounding counting. There are different "things" and methods to approaching this. There are also many applications of combinatorics in other areas of mathematics, such as graph theory, coding, probability, etc.
We can count the number of orders in which something happens.
For example, if there are 3 students and 3 chairs, in how many different orders can the students sit on these chairs?
To simplify this, we can use factorials.
In how many different ways could 9 students sit on 9 chairs in a class?
How do we approach the problem if there are not enough chairs?
We use for following formula
Permutations are used if we care about the order
1! = 1
0! = 1
You forgot the code for your 4-digit lock. There are 10 digis (0-9) and each appears at most once. How many different ways can you try?
Combinations are used when the order does not matter and you want to know how many ways there are to select a certain number of objects.
In a store, there are 5 different shirt colors: red, blue, green, yellow and black. You want to purchase 3 of them. How many ways are there to select 3 shirts out of the 5 that you like?
We use the following formula
Plug in the numbers...
Order does not matter
nCn = 1
nC0 = 1
nC1 = n
nCr = nC(n-r)
There are 10 students in your study group but you can only invite 5 to your party. How many different combinations of friends coul you invite?
(Note: use a pen and paper to help solve)