aboutsummaryrefslogtreecommitdiffstats
path: root/vorlesungen/slides/1/dreieck.tex
blob: f38f78d8c7721cdba17b53f67e6b9c1e0b2b6160 (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
%
% dreieck.tex
%
% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
%
\begin{frame}[t]
\frametitle{Dreiecksmatrizen}
\begin{columns}[t,onlytextwidth]
\begin{column}{0.31\textwidth}
\begin{block}{Dreiecksmatrix}
\begin{align*}
R&=
\begin{pmatrix}
*&*&*&\dots&*\\
0&*&*&\dots&*\\
0&0&*&\dots&*\\
\vdots&\vdots&\vdots&\ddots&\vdots\\
0&0&0&\dots&*
\end{pmatrix}
\\
U&=
\begin{pmatrix}
1&*&*&\dots&*\\
0&1&*&\dots&*\\
0&0&1&\dots&*\\
\vdots&\vdots&\vdots&\ddots&\vdots\\
0&0&0&\dots&1
\end{pmatrix}
\end{align*}
\end{block}
\end{column}
\begin{column}{0.31\textwidth}
\uncover<2->{%
\begin{block}{Nilpotente Matrix}
\[
N=
\begin{pmatrix}
0&*&*&\dots&*\\
0&0&*&\dots&*\\
0&0&0&\dots&*\\
\vdots&\vdots&\vdots&\ddots&\vdots\\
0&0&0&\dots&0
\end{pmatrix}
\]
\uncover<3->{%
$\Rightarrow N^n=0$
}
\end{block}}
\end{column}
\begin{column}{0.31\textwidth}
\uncover<4->{%
\begin{block}{Jordan-Matrix}
\[
J_\lambda=\begin{pmatrix}
\lambda&1&0&\dots&0\\
0&\lambda&1&\dots&0\\
0&0&\lambda&\dots&0\\
\vdots&\vdots&\vdots&\ddots&\vdots\\
0&0&0&\dots&\lambda
\end{pmatrix}
\]
\uncover<5->{%
$\Rightarrow J_\lambda -\lambda I$ ist nilpotent
}
\end{block}}
\end{column}
\end{columns}
\end{frame}