Given n distinct items, there are P(n,k) permutations of 0≤k≤n items. Each permutation of k items can be re-arranged k! ways. If item order doesn’t matter, there are
P(n,k)k!=n!k!(n−k)!=C(n,k)
orderless permutations, or combinations. Sanity check: C(n,n)=n!/(n!(n−n)!)=1/0!=1.
Combinations are fun to play with. First, C(n,k)=C(n,n−k).? Then
C(n,k+1)=n!(k+1)!(n−k−1)!=n!(n−k)(k+1)k!(n−k)(n−k−1)!=n−kk+1C(n,k)
C(n,k+1) is largest when (n−k)/(k+1) is closest to 1, which occurs when k is closest to (n−1)/2. Similarly
C(n+1,k)=(n+1)!k!(n+1−k)!=(n+1)n!k!(n+1−k)(n−k)!=n+1n+1−kC(n,k)