Permutations & Combinations
Permutations
Number of permutations of size k for a set of size n:
nPk=(n−k)!n!
Combinations
Number of combinations of size k for a set of size n:
nCk=k!(n−k)!n!=k!nPk
The number of combinations is always less than the number of permutations because
order matters for permutations.