aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2017-07-01 20:13:42 +0200
committerAdrian Kummerlaender2017-07-01 20:13:42 +0200
commit50459f72e4505aae0d738939816e4988bf9a57a5 (patch)
tree8d85f6e8e3b4411ab2b973a09a6b90fa9e742593
parentd9354deed77364dabd033388cc53a3f40c944fd7 (diff)
downloadmath_reference_sheets-50459f72e4505aae0d738939816e4988bf9a57a5.tar
math_reference_sheets-50459f72e4505aae0d738939816e4988bf9a57a5.tar.gz
math_reference_sheets-50459f72e4505aae0d738939816e4988bf9a57a5.tar.bz2
math_reference_sheets-50459f72e4505aae0d738939816e4988bf9a57a5.tar.lz
math_reference_sheets-50459f72e4505aae0d738939816e4988bf9a57a5.tar.xz
math_reference_sheets-50459f72e4505aae0d738939816e4988bf9a57a5.tar.zst
math_reference_sheets-50459f72e4505aae0d738939816e4988bf9a57a5.zip
Add section on prime numbers
-rw-r--r--common/commands.tex1
-rw-r--r--content/eaz.tex52
2 files changed, 53 insertions, 0 deletions
diff --git a/common/commands.tex b/common/commands.tex
index 0162f8e..0853848 100644
--- a/common/commands.tex
+++ b/common/commands.tex
@@ -3,6 +3,7 @@
\newcommand{\K}{\mathbb{K}}
\newcommand{\Q}{\mathbb{Q}}
\newcommand{\Z}{\mathbb{Z}}
+\newcommand{\Primes}{\mathbb{P}}
\newcommand{\powerset}[1]{\mathcal{P}(#1)}
\newcommand{\skp}[1]{\langle #1 \rangle}
diff --git a/content/eaz.tex b/content/eaz.tex
index 031e4b2..c2d73c0 100644
--- a/content/eaz.tex
+++ b/content/eaz.tex
@@ -16,8 +16,60 @@ Für $m, n \in \Z$ ex. $c, d \in \Z$ s.d. $mc + nd = ggT(m,n)$
\subsection*{Division mit Rest}
+$\forall k \in \Z, n \in \N \exists! d \in \Z, r \in \{0,\cdots,n-1\}: k = dn+r$.
+
+$r$ ist Rest der Division von $k$ durch $n$.
+
\section*{Primzahlen}
+Eine \emph{Primzahl} ist ein $1 < n \in \N$ welches keinen natürlichen Teiler außer $1$ und $p$ hat.
+
+$\Primes = \{ n \in \N | n > 1, \forall d,t < n : d \cdot t \neq n \}$
+
+\subsection*{Fundamentalsatz der Arithmetik}
+
+Jedes $n \in \N$ lässt sich eindeutig als sortiertes Produkt von Primzahlen schreiben.
+
+\subsection*{$p$-adische Bewertung}
+
+Sei $p \in \Primes$. Dann:
+
+$\forall 0 \neq k \in \Z \exists! v_p(k) \in \N_0 : p^{v_p(k)} \mid k \land p^{v_p(k)+1} \nmid k$
+
+Insb.: $k = \pm \displaystyle\prod_{p \in \Primes} p^{v_p(k)}$
+
+\vspace*{-4mm}
+\begin{align*}
+\forall k, l \in \Z: v_p(k+l) &\geq \min\{v_p(k),v_p(l)\} \\
+ v_p(k \cdot l) &= v_p(k) + v_p(l)
+\end{align*}
+
+Weiterhin gilt für $a, b \in \N$:
+
+$b \mid a \iff \forall p \in \Primes : v_p(b) \leq v_p(a)$
+
+$ggT(a,b) = \displaystyle\prod_{p \in \Primes} p^{e_p}$ mit $e_p = \min\{v_p(a),v_p(b)\}$
+
+$kgV(a,b) = \displaystyle\prod_{p \in \Primes} p^{f_p}$ mit $f_p = \max\{v_p(a),v_p(b)\}$
+
+\subsection*{Kleiner Satz von Fermat}
+
+Sei $p \in \Primes, c \in \Z$. Dann gilt $p \mid c^p - c$.
+
+\subsection*{Primzahlverteilung}
+
+Sei $k \in \N$. Dann ex. $M \in \N$ s.d. zwischen $M$ und $M+k$ keine Primzahl liegt.
+
+$\forall \epsilon > 0 \exists x_0 \in \R \forall x \geq x_0 \exists p \in \Primes : p \in [x,(1+\epsilon)x]$
+
+\vspace*{2mm}
+
+Die Funktion $\pi(x) := \#\{ p \in \Primes | p \leq x \}$ zählt die Anzahl der Primzahlen unterhalb $x \in \R$.
+
+Der \emph{Primzahlsatz} besagt: $\lim_{x \to \infty} \pi(x) \cdot \frac{\log{x}}{x} = 1$.
+
+Der \emph{Dichtheitssatz} besagt: Die Menge aller Brüche $p/l$ mit $p, l \in \Primes$ liegt dicht in $\R_{\geq 0}$.
+
\section*{Magmen}
Ein Magma ist Menge mit Verknüpfung $(M, \star)$ wobei $\star : M \times M \to M$ eine Abbildung ist.