aboutsummaryrefslogtreecommitdiff
path: root/static/files/articles/combinations-and-permutations/formulas.tex
blob: b7a67ec8897e435130b985bde0e02bee73ab54d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
\begin{array}{|l|c|c|c|}
\hline
    \text{Name} &
    \text{Ordered} &
    \text{With Repetition} &
    \text{Without Repetition} \\
\hline
    \text{Permutation} &
    \text{Yes} &
    n^k & 
    \frac{n!}{(n - k)!} \\
\hline
    \text{Combination} &
    \text{No} &
    {n + k - 1 \choose k} &
    {n \choose k} \\
\hline
\end{array}