aboutsummaryrefslogtreecommitdiff
path: root/static/files/articles/combinations-and-permutations/definitions.tex
blob: 6e8166854b2a26fdfea49f966eeccd5d4e37b26f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
\begin{array}{|c|c|c|c|}
\hline
    \text{Denoted} &
    \text{Read As} &
    \text{Formula} & 
    \text{Example} \\
\hline
    n! &
    \text{"N factorial"} &
    n! = \prod_{i=1}^n{i} &
    5! = 1 \cdot 2 \cdot 3 \cdot 4 \cdot 5 = 120 \\
\hline
    {n \choose k} &
    \text{"N choose K"} &
    {n \choose k} = \frac{n!}{k!(n - k)!} &
    {5 \choose 3} = \frac{5!}{3!(5 - 3)!} = 10\\
\hline
\end{array}