Binomial Coefficient C(n, r)
Binomial Theorem · Class XI
Pick n and r , see C(n, r), the symmetric partner C(n, n − r) and the central row max.
- C(n, r)10
- C(n, n − r)10
- Sum of row32
- C(n, x) for x in [0, n]
Formulas in this lab
- C(n, r)
- C(n, n − r)
- Sum of row
Frequently asked questions
▶What is the binomial coefficient $\binom{n}{r}$?
It counts the number of ways to choose $r$ objects from $n$ without order. The formula is $\binom{n}{r} = \frac{n!}{r!(n-r)!}$. So $\binom{5}{2} = 10$ and $\binom{6}{3} = 20$. These coefficients appear in the binomial expansion $(a+b)^n$.
▶How do I use the binomial coefficients lab?
Slide $n$ and $r$. The lab returns $\binom{n}{r}$ and shows it inside Pascal's triangle. Try $n = 4$, $r = 2$ to see $6$, the middle of row $4$. Notice $\binom{n}{r} = \binom{n}{n-r}$ — the symmetry of the row.
▶Where does $\binom{n}{r}$ appear in JEE problems?
The binomial theorem $(a+b)^n = \sum_{r=0}^{n}\binom{n}{r}a^{n-r}b^r$ is a JEE staple. Coefficient extraction, middle term in $(1+x)^{10}$, and probability of $r$ heads in $n$ coin flips all use $\binom{n}{r}$. Mastering the lab speeds up dozens of problem types.
▶Pascal's triangle versus the factorial formula: which is faster?
For small $n \le 8$, Pascal's triangle (each entry sums the two above) is fastest by hand. For $n > 10$, the formula $\frac{n!}{r!(n-r)!}$ wins, though factorials grow fast. The lab computes both ways to help you pick the right tool in an exam.