Possible Duplicate:
How to find a closed formula for the given summation
I am looking for a fast/best approach to compute $$\sum_{i=0}^{n} \binom{19}{i} \times \binom{7}{n-i}$$
For example,if $n=4$ the answer is $\binom{26}{4}$.Please explain your appraoch.
ADDED: After some experimentation with different numbers I think in general,$\sum_{i=0}^{n} \binom{p}{i} \times \binom{q}{n-i} = \binom{p+q}{n}$ holds.Does this result correct? If yes how could we proof this result.Any ideas?