Saying Hi to Binomials
Teresa Pan
In class, we talked a bit about factorials. Specifically, we defined it like so:
Now, let’s talk about binomial coefficients. We can define them using recursion:
This gives us Pascal’s triangle, which was actually discovered by an Indian mathematician named Pingala in the 3rd century. Pascal didn’t exist until the 17th century, so who knows what they called this triangle during those 1400 years. Anyways, here are the first few rows of Pascal’s triangle, constructed using the recursion above:
Sums of binomial coefficients
A very interesting property of Pascal’s triangle is that the sum in every rows add to a power of 2. This can be proved using inductive reasoning:
Base case: When , we have . The base case is true.
Inductive step: Let’s have . Suppose . We want to prove .
by reindexing with
by the recursive definition of binomial coefficients
by the inductive hypothesis
For , we reindex again with and obtain
We assumed to be true, and that , and . Thus, . Finally,
,
which is what we expected. We are done!
How do factorials relate to binomial coefficients?
Of course, learning combinatorics is how a lot of us were introduced to factorials.… Read the rest