aboutsummaryrefslogtreecommitdiff
path: root/static/files/articles/combinations-and-permutations/formulas.tex
diff options
context:
space:
mode:
Diffstat (limited to 'static/files/articles/combinations-and-permutations/formulas.tex')
-rw-r--r--static/files/articles/combinations-and-permutations/formulas.tex18
1 files changed, 18 insertions, 0 deletions
diff --git a/static/files/articles/combinations-and-permutations/formulas.tex b/static/files/articles/combinations-and-permutations/formulas.tex
new file mode 100644
index 0000000..b7a67ec
--- /dev/null
+++ b/static/files/articles/combinations-and-permutations/formulas.tex
@@ -0,0 +1,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}