Calculate a sum of fraction of binomial coefficients

146 Views Asked by At

I am trying to calculate this fraction:

$\sum_{n=1}^{101} \frac{100 \choose n-1}{103 \choose n}$. I wonder if there is some identity about binomial coefficient that would be helpful here.

1

There are 1 best solutions below

0
On BEST ANSWER

As mentioned in an earlier comment we can simplify:

$$ \dfrac{\binom{100}{n-1}}{\binom{103}{n}} = \dfrac{n \, (103-n)\,(102-n)}{101\times102\times 103} $$

so our sum is:

$$ \dfrac{1}{{101\times102\times 103}}\sum_{n=1}^{101}(n^3-205n^2+10506n) $$

Next, we can utilize Faulhaber's formula to simplify to:

$$ \dfrac{1}{{101\times102\times 103}} \left( \left(\dfrac{n(n+1)}{2}\right)^2 - 205 \dfrac{n(2n+1)(n+1)}{6} + 10506\dfrac{n(n+1)}{2} \right) $$

Finally, substituting n = 101 gives us:

$$ \sum_{n=1}^{101} \frac{100 \choose n-1}{103 \choose n} = \dfrac{26}{3} $$