1

I need to solve this binomial summation but cant seem to get it using binomial identities I learnt in school and college first-year:

$$S=\sum_{i=q}^{p-q}{\binom{i}{q}}{\binom{n-i}{p-q}}$$ p,q,n are positive integers such that $q\leq p\leq n$

Am I missing out something naive and clever?

Adi Dani
  • 16,949

1 Answers1

1

I guess it is $nCp$. Explanation : In the process of selecting p students from a group of n students ,You divide the group of n students into two groups. One having i students and other having n-i students. Now you select q students from the i students and rest p-q sudents from the rest students.As i would run from q to p-q(considering q<=p-q) and you sum them you will get the no. of ways in which you can select p students from n students.