Combinations

In this lesson, we'll learn how to calculate combinations in different cases.

For combinations, the order doesn’t matter.

Without repetition

For example, I want to pick three balls from a bag of five balls. The end result is that I should have three balls, the order in which I actually pick the balls is not important. How many ways can I do this?

The formula is C(n,k)=P(n,k)k!=n!(nk)!k!=(nk)C(n,k) = \frac{P(n,k)}{k!} = \frac{n!}{(n-k)!k!} = {n \choose k} ...