TUD_MATH_BA/Material/abbildungen_test.tex
2018-06-19 13:29:27 +02:00

86 lines
2.5 KiB
TeX

\documentclass[a4paper, 12pt]{article}
\usepackage{mathtools}
\usepackage{amssymb}
\usepackage[utf8]{inputenc} % special characters
% diagramms
\usepackage{tikz} %diagrams
\usetikzlibrary{arrows,cd} % for commutative diagrams
% template for a simple article in maths, also useful to just type up something math short!
%\newcommand{\invf}{f^{-1}}
%\newcommand{\invg}{g^{-1}}
%opening
\title{}
\author{}
\date{\today}
\begin{document}
\maketitle
\begin{center}
\begin{tikzpicture}
\node (V) at (0,0) {$V$};
\node (W) at (3,0) {$W$};
\node (R) at (1.5,-1.5) {$V\slash U$};
\draw[->, above] (V) to node {$f$} (W);
\draw[->, below] (V) to node {$\pi_U$} (R);
\draw[->, right, dashed] (W) to node {$\tilde f$} (R);
\end{tikzpicture}
\end{center}
\begin{center}
\begin{tikzpicture}
\node (V) at (0,0) {$V$};
\node (W) at (3,0) {$W$};
\node (R) at (1.5,-1.5) {$V\slash U$};
\draw[->, above] (V) to node {$f$} (W);
\draw[->, below] (V) to node {$\pi_U$} (R);
\draw[->, right, dashed] (W) to node {$\tilde f$} (R);
\end{tikzpicture}
\end{center}
\begin{center}
\begin{tikzcd}
V \arrow[r, "f"] \arrow[dr, dashrightarrow, "f^{\ast}(\phi)"]
& W \arrow[d, "\phi"]\\
& K\\
V^{\ast} & \arrow[l, "f^{\ast}"] W^{\ast}
\end{tikzcd}
\end{center}
\begin{center}
\begin{tikzcd}
V \arrow[r, "f"] \arrow[d, "\iota_V \cong"]
& W \arrow[d, "\iota_W \cong"] \\
V^{\ast \ast} \arrow[r, "f^{\ast \ast}"]
& W^{\ast \ast}
\end{tikzcd}
\end{center}
\begin{center}
\begin{tikzpicture}
\draw[thin] (-2,0) -- (10,0) node[right] {$x_1$};
\draw[thin] (0,-2) -- (0,10) node[above] {$x_2$};
%circles
\draw [->,green!70!black,thick,domain=0:16] plot ({5*cos(\x)}, {5*sin(\x)});
\draw [green!70!black] (5,-0.3) node {\scriptsize $\alpha_1$};
\draw [->,green!70!black,thick,domain=0:74] plot ({3*cos(\x)}, {3*sin(\x)});
\draw [green!70!black] (3,-0.3) node {\scriptsize $\alpha_2$};
% triangle
\fill[line width=1pt, color=red,fill=red, opacity=0.1] (0,0) -- (2,7) -- (7,2) -- cycle ;
\draw[red] (2,7) -- (7,2);
\draw[red] (3.5,3.5) node {\scriptsize $\Delta$};
% Paralello
\draw[->, thick] (0,0) -- (7,2) node[right] {\scriptsize $x_1=(a,b)$};
\draw[->, thick] (0,0) -- (2,7) node[above] {\scriptsize$x_2=(c,d)$};
\draw[->, thick] (7,2) -- (9,9) node[right] {\scriptsize$x_1 + x_2$};
\draw[->, thick] (2,7) -- (9,9);
\draw[blue] (0,0) -- (7,2) node[near end, below] {\scriptsize $g_{\Delta}$};
\draw[blue] (3.5,1) -- (2,7) node[near start, right] {\scriptsize$h_{\Delta}$};
\end{tikzpicture}
\end{center}
\end{document}