I'm currently working on a probability course, and I am constantly having trouble figuring out when to use permutations vs. combinations vs. factorials vs. exponents in order to calculate sample size, or in order to complete calculations. I was wondering if there is some kind of set of rules to go by when deciding when to use each?
Thank you very much.
You use combinations for calculating the number of subsets of size $k$ in a set of size $n$, denoted by $\binom{n}{k}$. When you consider subsets, the order of elements doesn't matter.
When you want to know the number of ordered tuples of size $k$ with different elements taken from a set of size $n$, you use $_nP_k$.
notice $\binom{n}{k}=\frac{_nP_k}{k!}$.
When you want to know the number of permutations of all the elements is a set of $n$ elements, you use $n!$. Because the first position has $n$ choices, the second position has $n-1$ choices and so on...
When you want to calculate the number of functions from a set of $n$ elements to a set of $k$ elements, you use $k^n$. Because for each element in the set with $n$ elements, there are $k$ possible choices for it to be mapped to.