diff options
| author | Paul Jungeblut <paul.jungeblut@gmail.com> | 2017-05-13 11:02:35 +0200 |
|---|---|---|
| committer | Paul Jungeblut <paul.jungeblut@gmail.com> | 2017-05-13 11:02:35 +0200 |
| commit | 60b546793251df5358f118d3904b58fa0c3321f8 (patch) | |
| tree | a0bd8235c8986e42227cfaf33b030c351cd2f9e0 | |
| parent | 80cf506dad289a0078683ad7da29f3c4d26135f9 (diff) | |
Adding more base cases to integer partition number.
| -rw-r--r-- | math/math.tex | 6 | ||||
| -rw-r--r-- | tcr.pdf | bin | 305031 -> 305098 bytes |
2 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} Binary files differ |
