There are 4 basic combinatoric formulas when picking $k$ elements among $n$
We have repetition is allowed or not allowed, and order matters or does not matter.
When order matters and repetition is not allowed we call it a permutation.
When order does not matter and repetition is not allowed we call it a combination.
What are the names of the missing two and what are the formulas for each?
We have the following cases for the number of subsets of size $k$ chosen from a set of $n$ distinct elements:
replacement and ordered, "permutation with repetition" $$n^k$$
no replacement and ordered, "k-permutations of n" $$\frac{n!}{(n-k)!}$$
no replacement and unordered, "combinations" $$\binom{n}k$$
replacement and unordered, "combination with repetitions" $$\binom{n+k-1}k$$