# Permutations
Permutations tell us how many possible ways are there to order a set of non-repeating elements (where order is important). This is in contrast to [[Combinations]] where order is irrelevant.
The formula is (n is the size of the set, k is the number elements you will permute).
$
_nP_k = \frac{n!}{(n-k)!}
$