diff options
Diffstat (limited to 'vorlesungen/slides/3/operatoren.tex')
-rw-r--r-- | vorlesungen/slides/3/operatoren.tex | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/vorlesungen/slides/3/operatoren.tex b/vorlesungen/slides/3/operatoren.tex new file mode 100644 index 0000000..20b7f3a --- /dev/null +++ b/vorlesungen/slides/3/operatoren.tex @@ -0,0 +1,48 @@ +% +% operatoren.tex +% +% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +% +\begin{frame}[t] +\frametitle{$X$ als Operator} +\begin{columns}[t,onlytextwidth] +\begin{column}{0.38\textwidth} +\begin{block}{Polynome} +$a(X)=a_0+a_1X+\dots+a_nX^n$ +\[ +a(X) += +\begin{pmatrix} +a_0\\a_1\\a_2\\a_3\\\vdots\\a_nX^n +\end{pmatrix} +\] +\end{block} +\end{column} +\begin{column}{0.58\textwidth} +\begin{block}{Multiplikation mit $X$} +\strut +\[ +\begin{pmatrix} +1\\0\\0\\0\\\vdots\\0 +\end{pmatrix} +\mapsto +\begin{pmatrix} +0\\1\\0\\0\\\vdots\\0 +\end{pmatrix} +\mapsto +\begin{pmatrix} +0\\0\\1\\0\\\vdots\\0 +\end{pmatrix} +\mapsto +\begin{pmatrix} +0\\0\\0\\1\\\vdots\\0 +\end{pmatrix} +\mapsto\dots\mapsto +\begin{pmatrix} +0\\0\\0\\0\\\vdots\\1 +\end{pmatrix} +\] +\end{block} +\end{column} +\end{columns} +\end{frame} |