Binomial Coefficient Formula
The Formula
When to use: Same as combination count, but now viewed as a coefficient in algebraic expansions.
Quick Example
Notation
What This Formula Means
The binomial coefficient \binom{n}{k} counts the number of ways to choose k items from n distinct items without regard to order. It equals \frac{n!}{k!(n-k)!}.
Same as combination count, but now viewed as a coefficient in algebraic expansions.
Formal View
Worked Examples
Example 1
mediumSolution
- 1 Apply formula: \binom{6}{2} = \frac{6!}{2!(6-2)!} = \frac{6!}{2! \cdot 4!} = \frac{6 \times 5 \times 4!}{2 \times 1 \times 4!} = \frac{30}{2} = 15
- 2 List all 2-item combinations from \{A,B,C,D,E,F\}: AB, AC, AD, AE, AF, BC, BD, BE, BF, CD, CE, CF, DE, DF, EF
- 3 Count: 15 combinations โ
- 4 Confirms formula gives the correct count
Answer
Example 2
hardExample 3
mediumCommon Mistakes
- Swapping n and k in the formula โ C(5, 2) \neq C(2, 5); k cannot exceed n
- Forgetting that C(n, 0) = 1 and C(n, n) = 1 โ there is exactly one way to choose nothing or everything
- Computing \frac{n!}{k!} instead of \frac{n!}{k!(n-k)!} โ omitting the (n-k)! in the denominator
Why This Formula Matters
Appears in the binomial theorem, probability distributions, and Pascal's triangle.
Frequently Asked Questions
What is the Binomial Coefficient formula?
The binomial coefficient \binom{n}{k} counts the number of ways to choose k items from n distinct items without regard to order. It equals \frac{n!}{k!(n-k)!}.
How do you use the Binomial Coefficient formula?
Same as combination count, but now viewed as a coefficient in algebraic expansions.
What do the symbols mean in the Binomial Coefficient formula?
\binom{n}{k} reads 'n choose k'; also written C(n, k) or _nC_k
Why is the Binomial Coefficient formula important in Math?
Appears in the binomial theorem, probability distributions, and Pascal's triangle.
What do students get wrong about Binomial Coefficient?
C(n, k) = C(n, n - k). Choosing k to include is the same as choosing n - k to exclude.
What should I learn before the Binomial Coefficient formula?
Before studying the Binomial Coefficient formula, you should understand: combination, factorial.