Pascal's Triangle is an infinite triangular array where each number is the sum of the two numbers directly above it:
The numbers in Pascal's Triangle are precisely the binomial coefficients . In row (starting at row 0), position (starting at ), the number represents .
This connection arises naturally from the recursive definition of binomial coefficients: 1
Which is exactly how Pascal’s Triangle is constructed: Each number is the sum of the two numbers above it.
The recursive formula represents that to choose items from items, we can either:
- Take a specific item and choose more from the remaining items ()
- Leave out that specific item and choose all from the remaining items ()
aka Pascal’s identity.
Reading binomial coefficients from the triangle:
can be found in row 4, position 2, telling us there are 6 ways to choose 2 items from 4 items.
These coefficients appear directly in row 4 of Pascal’s Triangle: 1, 4, 6, 4, 1
The sum of all binomial coefficients for fixed (row of Pascal’s triangle) equals
This makes intuitive sense when thinking about sets: counts the ways to choose items from items, and summing over all possible gives us the total number of possible subsets of an -element set, which is . Each element either is or isn’t in the subset, giving us two choices for each of the elements → power set.
In the first few rows:
Row 0: , i.e. we can choose none of the 0 items.
Row 1: , i.e we can choose all or none of the 1 item.
Row 2: , i.e. we can choose none, one in two ways, or both items.
Row 3: , i.e. we can choose none, have three choices for picking one item, three choices for picking two items, or all three items.
Pascals triangle (the binomial distribution) converges to the normal distribution for large .
where is the probability of success, is the probability of failure, and is the number of trials.
This is true is not too small, i.e. success and failure are not too rare.
If they are, the binomial distribution converges to the poisson distribution, where is the average number of successes.
Footnotes
-
E.g the value comes from adding the two numbers above it: ↩