how many ways can k items be selected from a pool of n items?
permutations: order matters, like prizes
n!--------(n - k)!
combinations: order doesn't matter, so divide by the number of redundant results, which is k!
n!-------------(n - k)! * k!