Add Graph for Fortsetzungen

This commit is contained in:
Anton Mosich 2023-01-24 17:23:06 +01:00
parent cd7cb80b08
commit 61eeba0bb9
Signed by: Flugschwein
GPG key ID: 9303E1C32E3A14A0

View file

@ -15,7 +15,7 @@
\usepackage{cancel}
\usepackage[ngerman]{babel}
\usepackage{harpoon}
\usetikzlibrary{tikzmark,calc,arrows,arrows.meta,angles,math,decorations.markings}
\usetikzlibrary{graphs,tikzmark,calc,arrows,arrows.meta,angles,math,decorations.markings}
\usepackage{pgfplots}
\usepackage{booktabs}
\usepackage{framed}
@ -3985,6 +3985,30 @@ Kongruenz vom Typ:
\end{itemize}
\item [$\mod {16}$:] Übung, nur 1 hat die Fortsetzung $1 + 0\cdot 8 = 1$.
\end{description}
\begin{center}
\begin{tikzpicture}
\node (a) at (4, 0) {17};
\node (b) at (4, 1) {1};
\node (c) at (4, 2) {1};
\node (d) at (4, 3) {1};
\node (e) at (4, 4) {1};
\node (f) at (2, 2) {4};
\node (g) at (1, 2) {0};
\node (h) at (2, 3) {2};
\node (i) at (1, 3) {0};
\node (j) at (1, 4) {0};
\graph { (e) -> (d) -> (c) -> (b) -> (a) ,
(j) -> (h),
(j) -> (i) -> (g),
(i) -> (f)
};
\node at (-1, 0) {$\mod {32}$:};
\node at (-1, 1) {$\mod {16}$:};
\node at (-1, 2) {$\mod {8}$:};
\node at (-1, 3) {$\mod {4}$:};
\node at (-1, 4) {$\mod {2}$:};
\end{tikzpicture}
\end{center}
\end{bsp}
\section{Potenzreste \& quadratische Reste}