aboutsummaryrefslogtreecommitdiff
path: root/static/files/articles/combinations-and-permutations/formulas.tex
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-11-19 17:06:00 -0500
committerPaul Duncan <pabs@pablotron.org>2022-11-19 17:06:00 -0500
commita547b7169b6db11d13a9b737c30fe1def55f994e (patch)
tree4b487860010009351438647a29f6f45d0d3f8a13 /static/files/articles/combinations-and-permutations/formulas.tex
parenta07fb6643a8bc67dc8be81eb05f9a41621432f10 (diff)
downloadpablotron.org-a547b7169b6db11d13a9b737c30fe1def55f994e.tar.bz2
pablotron.org-a547b7169b6db11d13a9b737c30fe1def55f994e.zip
add articles/combinations-and-permutations.md
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}