Find the number of combination of n flowers of which p are identical taken r at a time.Does the answer depend on cases(i)r>p
(ii)r<=p
-
UP 0 DOWN 0 0 1
1 Answers
Lokesh Verma
·2008-10-31 23:55:12
k={0 to min(r,p)}Σ (n-p)C(r-k)
summation is over k..
So in some way i have put both these in one single solution..
but yeah u are right they will have 2 different forms :)