summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorPaul Jungeblut <paul.jungeblut@gmail.com>2017-05-13 11:02:35 +0200
committerPaul Jungeblut <paul.jungeblut@gmail.com>2017-05-13 11:02:35 +0200
commit60b546793251df5358f118d3904b58fa0c3321f8 (patch)
treea0bd8235c8986e42227cfaf33b030c351cd2f9e0 /math
parent80cf506dad289a0078683ad7da29f3c4d26135f9 (diff)
Adding more base cases to integer partition number.
Diffstat (limited to 'math')
-rw-r--r--math/math.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/math/math.tex b/math/math.tex
index 01ecb52..a3805c1 100644
--- a/math/math.tex
+++ b/math/math.tex
@@ -191,9 +191,9 @@ Sei $p \geq 3$ eine Primzahl, $a \in \mathbb{Z}$:
= \sum\limits_{k = 0}^{n}\stirlingII{n}{k}$\\
\textsc{Partitions} &
- $f(1,1) = 1 \quad
- f(n,k) = 0 \text{ für } k > n \quad
- f(n,k) = f(n-k,k) + f(n-1,k-1)$ \\
+ $f(0,0) = 1 \quad
+ f(n,k) = 0 \text{ für } k > n \text{ oder } n \leq 0 \text{ oder } k \leq 0$ \\
+ & $f(n,k) = f(n-k,k) + f(n-1,k-1)$ \\
\bottomrule
\end{tabular}
\end{flushleft}