Academy
Binomial Coefficients
Level 1 - Math I (Physics) topic page in Real Numbers.
Understanding nCr Notation
The notation \(\binom{n}{r}\) (read as "n choose r") represents the number of ways to select \(r\) objects from \(n\) distinct objects without regard to order.
where \(n!\) (n factorial) is the product of all positive integers up to \(n\):
Properties of Binomial Coefficients
Pascal's Triangle
Pascal's triangle is a triangular array where each entry is a binomial coefficient:
- Row 0: \(\binom{0}{0} = 1\)
- Row 1: \(\binom{1}{0}, \binom{1}{1} = 1, 1\)
- Row 2: \(\binom{2}{0}, \binom{2}{1}, \binom{2}{2} = 1, 2, 1\)
- Row 3: \(\binom{3}{0}, \binom{3}{1}, \binom{3}{2}, \binom{3}{3} = 1, 3, 3, 1\)
- Row 4: \(1, 4, 6, 4, 1\)
Each row corresponds to the coefficients \(\binom{n}{0}, \binom{n}{1}, \ldots, \binom{n}{n}\) for \(n = 0, 1, 2, \ldots\)
Building Pascal's Triangle
Starting with 1 at the top, each subsequent number is the sum of the two numbers directly above it. This demonstrates the recurrence relation:
Combinations
A combination is a selection of items where order does not matter.
where \(P(n,r)\) are permutations (order matters) and \(\binom{n}{r}\) are combinations (order doesn't matter).