The exact connection between Binomial coefficients and Factorials

binomial-coefficientsfactorial

The factorial n! is the number of ways, the set {1, . . . , n} may be
ordered.

The binomial coefficient defines how many different ways there are to choose out of a group of n exactly k of them.

What is the connection between factorials and binomial coefficients?

Best Answer

Here is the combinatorical approach:

Suppose that we choose $k$ out of $n$ elements where order does matter. We would have $n$ posibilities for the first choice, $n-1$ posibilities for the next and so on. So we have $$ n\cdot (n-1) \cdot (n-2) ... (n-k+1) = \frac{n!}{(n-k)!}$$ posibilities, but this is only when order does matter. When order doesn't matter, we would have to divide by the number of ways we can arrange the $k$ objects, which of course is $k!$. We thereby get that there is $$\frac{n!}{k!(n-k)!}$$ ways to choose $k$ elements from a set of $n$ elements (when order does not matter).

Related Question