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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
%
% sl2.tex -- template for standalon tikz images
%
% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
%
\documentclass[tikz]{standalone}
\usepackage{amsmath}
\usepackage{times}
\usepackage{txfonts}
\usepackage{pgfplots}
\usepackage{csvsimple}
\usetikzlibrary{arrows,intersections,math}
\begin{document}
\def\skala{1}
\begin{tikzpicture}[>=latex,thick,scale=\skala]
\definecolor{darkgreen}{rgb}{0,0.6,0}
\begin{scope}[xshift=-4.5cm]
\fill[color=blue!20]
(1.4,0) -- (0,1.4) -- (-1.4,0) -- (0,-1.4) -- cycle;
\fill[color=red!40,opacity=0.5]
(1.96,0) -- (0,1) -- (-1.96,0) -- (0,-1) -- cycle;
\begin{scope}
\clip (-2.1,-2.1) rectangle (2.3,2.3);
\draw[color=darkgreen]
plot[domain=-1:1,samples=100]
({(1/1.4)*exp(\x)},{(1/1.4)*exp(-\x)});
\draw[color=darkgreen]
plot[domain=-1:1,samples=100]
({(1/1.4)*exp(\x)},{-(1/1.4)*exp(-\x)});
\draw[color=darkgreen]
plot[domain=-1:1,samples=100]
({-(1/1.4)*exp(\x)},{(1/1.4)*exp(-\x)});
\draw[color=darkgreen]
plot[domain=-1:1,samples=100]
({-(1/1.4)*exp(\x)},{-(1/1.4)*exp(-\x)});
\end{scope}
\draw[->] (-2.1,0) -- (2.3,0) coordinate[label={$x$}];
\draw[->] (0,-2.1) -- (0,2.3) coordinate[label={right:$y$}];
\draw[->,color=blue] (0,0) -- (1.4,0);
\draw[->,color=blue] (0,0) -- (0,1.4);
\draw[->,color=red] (0,0) -- (1.96,0);
\draw[->,color=red] (0,0) -- (0,1);
\node at (0,-3.2)
{$\displaystyle
\begin{aligned}
A&=\begin{pmatrix}1&0\\0&-1\end{pmatrix}
\\
e^{At}
&=\begin{pmatrix}e^t&0\\0&e^{-t}\end{pmatrix}
\end{aligned}
$};
\end{scope}
\begin{scope}
\fill[color=blue!20]
(0:1.4) -- (90:1.4) -- (180:1.4) -- (270:1.4) -- cycle;
\fill[color=red!40,opacity=0.5]
(33:1.4) -- (123:1.4) -- (213:1.4) -- (303:1.4) -- cycle;
\draw[color=darkgreen] (0,0) circle[radius=1.4];
\draw[->] (-2.1,0) -- (2.3,0) coordinate[label={$x$}];
\draw[->] (0,-2.1) -- (0,2.3) coordinate[label={right:$y$}];
\draw[->,color=blue] (0,0) -- (1.4,0);
\draw[->,color=blue] (0,0) -- (0,1.4);
\draw[->,color=red] (0,0) -- (33:1.4);
\draw[->,color=red] (0,0) -- (123:1.4);
\node at (0,-3.2)
{$\displaystyle
\begin{aligned}
B
&=\begin{pmatrix}0&-1\\1&0 \end{pmatrix}
\\
e^{Bt}
&=
\begin{pmatrix}
\cos t&-\sin t\\
\sin t& \cos t
\end{pmatrix}
\end{aligned}$};
\end{scope}
\begin{scope}[xshift=4.5cm]
\fill[color=blue!20]
(0:1.4) -- (90:1.4) -- (180:1.4) -- (270:1.4) -- cycle;
\def\x{0.5}
\fill[color=red!40,opacity=0.5]
({1.4*cosh(\x)},{1.4*sinh(\x})
--
({1.4*sinh(\x},{1.4*cosh(\x)})
--
({-1.4*cosh(\x)},{-1.4*sinh(\x})
--
({-1.4*sinh(\x},{-1.4*cosh(\x)})
-- cycle;
\begin{scope}
\clip (-2.1,-2.1) rectangle (2.2,2.2);
\draw[color=darkgreen]
plot[domain=-1:1,samples=100] ({1.4*cosh(\x)},{1.4*sinh(\x)});
\draw[color=darkgreen]
plot[domain=-1:1,samples=100] ({1.4*sinh(\x)},{1.4*cosh(\x)});
\draw[color=darkgreen]
plot[domain=-1:1,samples=100] ({-1.4*cosh(\x)},{1.4*sinh(\x)});
\draw[color=darkgreen]
plot[domain=-1:1,samples=100] ({1.4*sinh(\x)},{-1.4*cosh(\x)});
\end{scope}
\draw[->] (-2.1,0) -- (2.3,0) coordinate[label={$x$}];
\draw[->] (0,-2.1) -- (0,2.3) coordinate[label={right:$y$}];
\draw[->,color=blue] (0,0) -- (1.4,0);
\draw[->,color=blue] (0,0) -- (0,1.4);
\draw[->,color=red] (0,0) -- ({1.4*cosh(\x)},{1.4*sinh(\x)});
\draw[->,color=red] (0,0) -- ({1.4*sinh(\x)},{1.4*cosh(\x)});
\node at (0,-3.2) {$\displaystyle
\begin{aligned}
C&=\begin{pmatrix}0&1\\1&0\end{pmatrix}
\\
e^{Ct}
&=
\begin{pmatrix}
\cosh t&\sinh t\\
\sinh t&\cosh t
\end{pmatrix}
\end{aligned}
$};
\end{scope}
\end{tikzpicture}
\end{document}
|