Combinations and Selection Problems
This lesson covers the following key concepts:
- Combination: selection where order doesn't matter
- nCr = n!/[r!(n-r)!] formula
- Properties: nCr = nC(n-r), nCr + nC(r-1) = n+1Cr
- Relation: nPr = r! × nCr
- Selection with restrictions (at least, at most)
- Distribution of identical and distinct objects
- Derangements: permutations with no fixed point
Important Formulas
- nCr=r!(n−r)!n!
- nCr=nCn−r
- nCr+nCr−1=n+1Cr
- nC0=nCn=1
- nPr=r!×nCr
- Derangement: Dn=n!(1−1!1+2!1−3!1+...+(−1)nn!1)