From 60b546793251df5358f118d3904b58fa0c3321f8 Mon Sep 17 00:00:00 2001 From: Paul Jungeblut Date: Sat, 13 May 2017 11:02:35 +0200 Subject: Adding more base cases to integer partition number. --- math/math.tex | 6 +++--- 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} diff --git a/tcr.pdf b/tcr.pdf index 8eb1ee7..42cf9c6 100644 Binary files a/tcr.pdf and b/tcr.pdf differ -- cgit v1.2.3