Math Lab

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.

5
type a value
020
2
type a value
020
Live values
  • C(n, r)10
  • C(n, n − r)10
  • Sum of row32
xy
  • C(n, x) for x in [0, n]

Formulas in this lab

  • C(n, r)
    (nr)=n!r!(nr)!\binom{n}{r} = \dfrac{n!}{r!\,(n-r)!}
  • C(n, n − r)
    (nnr)\binom{n}{n-r}
  • Sum of row
    r(nr)=2n\sum_r \binom{n}{r} = 2^n
Tip: The blue curve is the full Pascal row for your n; the peak is at x = n/2.

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.