Combination

A combination, sometimes called a binomial coefficient, is a way of choosing $r$ objects from a set of $n$ where the order in which the objects are chosen is irrelevant. We are generally concerned with finding the number of combinations of size $r$ from an original set of size $n$

Video

This video goes over what Permutations & Combinations are, their various types, and how to calculate each type! It serves as a great introductory video to combinations, permutations, and counting problems in general! Permutations & Combinations Video https://youtu.be/MWNe0qbBwu4

This video is a great introduction to permutations, combinations, and constructive counting: https://www.youtube.com/watch?v=t6a4uHEwQnM&

Notation

The common forms of denoting the number of combinations of ${r}$ objects from a set of ${n}$ objects is:

  • $\binom{n}{r}$
  • ${C}(n,r)$
  • $\,_{n} C_{r}$
  • $C_n^{r}$

Formula

${{n}\choose {r}} = \frac {n!} {r!(n-r)!}$

Derivation

Consider the set of letters A, B, and C. There are $3!$ different permutations of those letters. Since order doesn't matter with combinations, there is only one combination of those three.($ABC,ACB,BAC,BCA,CAB,CBA$ are all equivalent in combination but different in permutation.)

In general, since for every permutation of ${r}$ objects from ${n}$ elements $P(n,r)$ which is $\frac{n!}{n-r!}$.Now since in permutation the order of arrangement matters($ABC$ is not same as $ACB$) but in combinations the order of arrangement does not matter($ABC$ is equivalent to $ACB$).For its derivation see this video.

Suppose $r$ elements are selected out.For permutation $r$ elements can be arranged in $r!$ ways.We have overcounted the number of combinations by $r!$ times.So We have ${r}!{C}({n},{r})=P(n,r)$, or ${{n}\choose {r}} = \frac {n!} {r!(n-r)!}$.

Formulas/Identities

  • $\binom{n-1}{r-1}+\binom{n-1}{r}=\binom{n}{r}$
  • $\binom{n}{r}=\frac{n}{r}\binom{n-1}{r-1}$
  • $\sum_{x=0}^{n} \binom{n}{x} = 2^n$

One of the many proofs is by first inserting $a = b = 1$ into the binomial theorem. Because the combinations are the coefficients of $2^n$, and a and b disappear because they are 1, the sum is $2^n$.

  • $\sum_{i=0}^{k}\binom{m}{i}\binom{n}{k-i}=\binom{m+n}{k}$
  • $\binom{n}{r}=\binom{n}{n-r}$

We can prove this by putting the combinations in their algebraic form. $\binom{n}{n-r}=\frac{n!}{(n-r)!(n-(n-r))!}$. As we can see, $(n-(n-r))!=(n-n+r)=r!$. By the commutative property, $\frac{n!}{(n-r)!r!}=\frac{n!}{r!(n-r)!}$. Because $\frac{n!}{r!(n-r)!}=\binom{n}{r}$, by the transitive property, we can conclude that this is true for all non-negative integers n and r where n is greater than or equal to r. Another reason this is true is because that choosing what you don't want is the same as choosing what you do want, because by choosing what you don't want, you imply that you choose the rest. This identity is also the reason why Pascal's Triangle is symmetrical.

Examples

See also