Paragraph

Here is another way to find the number of \(k\)-permutations of \(n\) elements: first select which \(k\) elements will be in the permutation, then count how many ways there are to arrange them. Once you have selected the \(k\) objects, we know there are \(k!\) ways to arrange (permute) them. But how do you select \(k\) objects from the \(n\text{?}\) You have \(n\) objects, and you need to choose \(k\) of them. You can do that in \({n \choose k}\) ways. Then for each choice of those \(k\) elements, we can permute them in \(k!\) ways. Using the multiplicative principle, we get another formula for \(P(n,k)\text{:}\)

\begin{equation*} P(n,k) = {n \choose k}\cdot k!\text{.} \end{equation*}
in-context