aboutsummaryrefslogtreecommitdiffstats
path: root/vorlesungen/slides/1/algebrastruktur.tex
blob: d7794a30b4cb190483c3f97e6dee488dbb623fd9 (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
%
% algebrastruktur.tex
%
% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
%
\bgroup

\definecolor{darkgreen}{rgb}{0,0.6,0}

\begin{frame}[t]
\frametitle{Algebra über $\Bbbk$}
\begin{center}
\begin{tikzpicture}[>=latex,thick]
\pgfmathparse{atan(7/4)}
\xdef\a{\pgfmathresult}
\uncover<2->{
	\fill[color=red!40,opacity=0.5]
		({-4-2.5},{2+1.0})
		--
		({-2.5},{-3-1.0})
		--
		({2.5},{-3-1.0})
		--
		({-4+2.5},{2+1.0})
		-- cycle;
}

\uncover<4->{
	\fill[color=blue!40,opacity=0.5]
		({4-2.5},{2+1.0})
		--
		({-2.5},{-3-1.0})
		--
		({2.5},{-3-1.0})
		--
		({4+2.5},{2+1.0})
		-- cycle;
}

\uncover<6->{
	\fill[color=darkgreen!40,opacity=0.5]
		({-4-2.5},{2+1.0})
		-- 
		({-4-2.5+2*(4/7)},{2-1})
		-- 
		({+4+2.5-2*(4/7)},{2-1})
		-- 
		({+4+2.5},{2+1})
		--
		cycle;
}

\node at ({-3-0.5},2) {Skalarmultiplikation};

\node at (3.5,2.2) {Multiplikation};
\node at (3.5,1.8) {\tiny Halbgruppe};

\node at (0,-2.8) {Addition};
\node at (0,-3.2) {\tiny Gruppe};

\uncover<4->{
	\node[color=blue] at (4.8,-0.5) [rotate=\a] {Ring\strut};
}

\uncover<2->{
	\node[color=red] at (-4.8,-0.5) [rotate=-\a] {Vektorraum\strut};
}

\uncover<6->{
	\node[color=darkgreen] at (0,2.6) {$(\lambda a)b=\lambda(ab)$};
}

\uncover<3->{
	\node[color=red] at (-2.5,-0.5) {$\displaystyle
	\begin{aligned}
	\lambda(a+b)&=\lambda a + \lambda b\\
	(\lambda+\mu)a&=\lambda a +\mu a
	\end{aligned}$};
}

\uncover<5->{
	\node[color=blue] at (2.5,-0.5) {$\displaystyle
	\begin{aligned}
	a(b+c)&=ab+ac\\
	(a+b)c&=ac+bc
	\end{aligned}$};
}

\end{tikzpicture}
\end{center}
\end{frame}

\egroup