Binomial Expansion
The Binomial Expansion tells us how to expand a power of two summed terms such as (a+b)n.
(a+b)1(a+b)2(a+b)3(a+b)4=a+b=a2+2ab+b2=a3+3a2b+3ab2+b3=a4+4a3b+6a2b2+4ab3+b4
The coefficients (1,2,1−1,3,3,1−1,4,6,4,1) form a pattern known as Pascal's Triangle.
Pascal's Triangle is a simple recursive structure where each number inside the triangle is the sum of the two numbers above it.
| n | Coefficients of (a+b)n | 
|---|
| 0 | 1 | 
| 1 | 1 1 | 
| 2 | 1 2 1 | 
| 3 | 1 3 3 1 | 
| 4 | 1 4 6 4 1 | 
| 5 | 1 5 10 10 5 1 | 
This triangle encodes the number of ways each term can appear in the product (a+b)n.
For example, in (a+b)3, there are 3 ways to choose which of the three factors contributes b (and the rest contribute a), producing the term 3a2b.
Let's look deeper the combinatorial logic more.
When expanding (a+b)n, each term in the result corresponds to a unique choice of where the b appear among the n factors.
For a given term with bk, we are choosing k positions (out of n) where b comes from, and the remaining n−k positions where a appears.
The number of such combinations is:
Number of ways=k!(n−k)!n!
This is the binomial coefficient, often written as:
(kn)=k!(n−k)!n!
So the general Binomial Expansion becomes:
(a+b)n=k=0∑n(kn)an−kbk
We can now use this foundation to approach the exponential function.
The value of e itself can be understood as a special case of ex where x=1.
First, we can define ex as:
n→∞lim(1+n1)nx
Then we can apply the binomial theorem:
ex=n→∞limk=0∑n(knx)1nx−k(n1)k=n→∞limk=0∑nk!(nx−k)!(nx)!(n1)k=k=0∑nn→∞lim(nx−k)!(nx)!⋅k!nk1
Just like with (n−k)!n!, we can expand (nx−k)!(nx)!.
As n approaches infinity, nx−k becomes closer to nx:
n→∞lim(nx−k)!(nx)!⋅nk1=n→∞limnnx⋅nnx−1⋯nnx−k+1=x⋅x⋯x=xk
Plugging this back into the sum:
ex=k=0∑nn→∞lim(nx−k)!(nx)!⋅k!nk1=k=0∑∞k!xk
This series gives us the infinite expansion of the exponential function.
A beautiful property of ex is that its derivative equals itself.
We can verify this from the series:
exdxdex=k=0∑∞k!xk=k=1∑∞k!kxk−1=k=1∑∞(k−1)!xk−1=k=0∑∞k!xk=ex