aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/70-graphen/images/adjazenzd.tex
blob: 81801d3495c5e277155d588a064912b7f87290f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
%
% adjazenzd.tex -- Adjazenz-Matrix für einen gerichten Graphen
%
% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
%
\documentclass[tikz]{standalone}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{times}
\usepackage{txfonts}
\usepackage{pgfplots}
\usepackage{csvsimple}
\usepackage{color}
\usetikzlibrary{arrows,intersections,math,calc}
\begin{document}
\def\skala{1}
\begin{tikzpicture}[>=latex,thick,scale=\skala]

\def\r{1.8}
\def\R{\bgroup\color{red}0\egroup}

\begin{scope}
\coordinate (A) at ({\r*cos(0*72)},{\r*sin(0*72)});
\coordinate (B) at ({\r*cos(1*72)},{\r*sin(1*72)});
\coordinate (C) at ({\r*cos(2*72)},{\r*sin(2*72)});
\coordinate (D) at ({\r*cos(3*72)},{\r*sin(3*72)});
\coordinate (E) at ({\r*cos(4*72)},{\r*sin(4*72)});

\draw[->,shorten >= 0.2cm,shorten <= 0.2cm] (A) -- (C);
\draw[color=white,line width=5pt] (B) -- (D);
\draw[->,shorten >= 0.2cm,shorten <= 0.2cm] (B) -- (D);

\draw[->,shorten >= 0.2cm,shorten <= 0.2cm] (A) -- (B);
\draw[->,shorten >= 0.2cm,shorten <= 0.2cm] (B) -- (C);
\draw[->,shorten >= 0.2cm,shorten <= 0.2cm] (C) -- (D);
\draw[->,shorten >= 0.2cm,shorten <= 0.2cm] (D) -- (E);
\draw[->,shorten >= 0.2cm,shorten <= 0.2cm] (E) -- (A);

\draw (A) circle[radius=0.2];
\draw (B) circle[radius=0.2];
\draw (C) circle[radius=0.2];
\draw (D) circle[radius=0.2];
\draw (E) circle[radius=0.2];

\node at (A) {$1$};
\node at (B) {$2$};
\node at (C) {$3$};
\node at (D) {$4$};
\node at (E) {$5$};
\node at (0,0) {$G$};

\node at ($0.5*(A)+0.5*(B)-(0.1,0.1)$) [above right] {$\scriptstyle 1$};
\node at ($0.5*(B)+0.5*(C)+(0.05,-0.07)$) [above left] {$\scriptstyle 2$};
\node at ($0.5*(C)+0.5*(D)+(0.05,0)$) [left] {$\scriptstyle 3$};
\node at ($0.5*(D)+0.5*(E)$) [below] {$\scriptstyle 4$};
\node at ($0.5*(E)+0.5*(A)+(-0.1,0.1)$) [below right] {$\scriptstyle 5$};
\node at ($0.6*(A)+0.4*(C)$) [above] {$\scriptstyle 6$};
\node at ($0.4*(B)+0.6*(D)$) [left] {$\scriptstyle 7$};


\end{scope}

\begin{scope}[xshift=3cm,yshift=-1.1cm]
\node at (0,0) [right] {$\displaystyle
B(G)
=
\begin{pmatrix*}[r]
-1& 0& 0& 0& 1&-1& 0\\
 1&-1& 0& 0& 0& 0&-1\\
 0& 1&-1& 0& 0& 1& 0\\
 0& 0& 1&-1& 0& 0& 1\\
 0& 0& 0& 1&-1& 0& 0
\end{pmatrix*}$};
\end{scope}


\begin{scope}[xshift=3cm,yshift=1.1cm]
\node at (0,0) [right] {$\displaystyle
A(G)
=
\begin{pmatrix*}[r]
 0&\R&\R& 0&\R\\
 1& 0&\R&\R& 0\\
 1& 1& 0&\R& 0\\
 0& 1& 1& 0&\R\\
 1& 0& 0& 1& 0
\end{pmatrix*},
\quad
D(G)
=
\begin{pmatrix*}[r]
3&0&0&0&0\\
0&3&0&0&0\\
0&0&3&0&0\\
0&0&0&3&0\\
0&0&0&0&2
\end{pmatrix*}
$};
\end{scope}

\end{tikzpicture}
\end{document}