瀏覽代碼

Mitschrieb vom 07.11.2013 teilweise digitalisiert

Martin Thoma 12 年之前
父節點
當前提交
0fcc121736

二進制
documents/GeoTopo/GeoTopo.pdf


+ 85 - 0
documents/GeoTopo/Kapitel1.tex

@@ -794,5 +794,90 @@ $\qed$
     ist. $\qed$
 \end{beweis}
 
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Mitschrieb vom 07.11.2013                                         %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\section{Wege und Knoten}
+\begin{definition}\xindex{Weg}\xindex{Weg!geschlossener}\xindex{Weg!einfacher}
+    Sei $X$ ein topologischer Raum. 
+    \begin{enumerate}[label=\alph*)]
+        \item Ein \textbf{Weg} in $X$ ist eine stetige Abbildung $\gamma:[0,1] \rightarrow X$.
+        \item $\gamma$ heißt \textbf{geschlossen}, wenn $\gamma(1) = \gamma(0)$ gilt.
+        \item $\gamma$ heißt \textbf{einfach}, wenn $\gamma|_{[0,1]}$ 
+              injektiv ist.
+    \end{enumerate}
+\end{definition}
+
+\begin{beispiel}
+    Ist $X$ diskret, so ist jeder Weg konstant, d.~h. von der Form
+    \[\forall x \in [0,1]: \gamma(x) = c, \;\;\; c \in X\]
+    Denn $\gamma([0,1])$ ist zusammenhängend für jeden Weg $\gamma$.
+\end{beispiel}
+
+\begin{definition}\xindex{Wegzusammenhang}
+    Ein topologischer Raum $X$ heißt \textbf{wegzusammenhängend},
+    wenn es zu je zwei Punkten $x,y \in X$ einen Weg $\gamma:[0,1] \rightarrow X$
+    gibt mit $\gamma(0)=x$ und $\gamma(1)=y$.
+\end{definition}
+
+\begin{korollar}
+    Sei $X$ ein topologischer Raum.
+
+    \begin{enumerate}[label=(\roman*)]
+        \item $X$ ist wegzusammenhängend $\Rightarrow X$ ist zusammenhängend
+        \item $X$ ist wegzusammenhängend $\not\Leftarrow X$ ist zusammenhängend
+    \end{enumerate}
+\end{korollar}
+
+\begin{beweis}~\\
+    \begin{enumerate}[label=(\roman*)]
+    \item Sei $X$ ein wegzusammenhängender topologischer Raum, $A_1, A_2$
+    nichtleere, disjunkte, abgeschlossene Teilmengen von $X$ mit
+    $A_1 \cup A_2 = X$. Sei $x \in A_1, y \in A_2, \gamma:[0,1] \rightarrow X$
+    ein Weg von $x$ nach $y$.
+
+    \todo[inline]{Bild eines topologischen Raumes, der in zwei Teile $A_1, A_2$ geteilt wird}
+
+    Dann ist $C:= \gamma([0,1]) \subseteq X$ zusammenhängend, weil 
+    $\gamma$ stetig ist.
+    \[C = \underbrace{(C \cap A_1)}_{\ni x} \cup \underbrace{(C \cap A_2)}_{\ni y}\]
+    ist Zerlegung in nichtleere, disjunkte, abgeschlossene Teilmengen
+    $\Rightarrow$ Widerspruch 
+
+    \item Sei $X = \Set{(x,y) \in \mdr^2| x^2 + y^2 = 1 \lor y = 1 +2\cdot e^{-\frac{1}{10} x}}$
+        Abbildung \ref{fig:topology-spiral} veranschaulicht diesen Raum.
+
+        \begin{figure}[htp]
+            \centering
+            \input{figures/topology-spiral}
+            \caption{Eine Kreislinie in der Mitte sowie eine Endlosspirale, 
+                die sich immer weiter dem Kreis annähert. $X$ ist
+                zusammenhängend, jedoch nicht wegzusammenhängend.}
+            \label{fig:topology-spiral}
+        \end{figure}
+
+          Sei $U_1 \cup U_2 = X, U_1 \neq U_2 = \emptyset, U_i$ offen.
+          $X = C \cup S$. Dann ist $C \subseteq U_1$ oder $C \subseteq U_2$,
+          weil $C$ und $S$ zusammenhängend sind.
+
+          Also ist $C = U_1$ und $S = U_2$ (oder umgekehrt).
+
+          Sei $\gamma \in C = U_1, \varepsilon > 0$ und $\fB_\varepsilon (y) \subseteq U_1$
+          eine Umgebung von $y$, die in $U_1$ enthalten ist.
+
+          Aber: $\fB_\varepsilon(y) \cap S \neq \emptyset \Rightarrow$
+          Widerspruch 
+$\qed$
+    \end{enumerate}
+\end{beweis}
+
+\textbf{Achtung:} Es gibt stetige, surjektive Abbildungen 
+    $[0,1] \rightarrow [0,1] \times [0,1]$. Ein Beispiel ist die
+    in Abbildung \ref{fig:hilbert-curve} dargestellte Hilbert-Kurve.
+    
+    \input{figures/hilbert-curve}
+
+\todo[inline]{Noch ca. 2 Seiten zu schreiben}
+
 % Die Übungsaufgaben sollen ganz am Ende des Kapitels sein.
 \input{Kapitel1-UB}

+ 56 - 0
documents/GeoTopo/figures/hilbert-curve.tex

@@ -0,0 +1,56 @@
+% Author: Marc van Dongen
+% Source: http://www.texample.net/tikz/examples/hilbert-curve/
+\newdimen\HilbertLastX
+\newdimen\HilbertLastY
+\newcounter{HilbertOrder}
+
+\def\DrawToNext#1#2{%
+   \advance \HilbertLastX by #1
+   \advance \HilbertLastY by #2
+   \pgfpathlineto{\pgfqpoint{\HilbertLastX}{\HilbertLastY}}
+   % Alternative implementation using plot streams:
+   % \pgfplotstreampoint{\pgfqpoint{\HilbertLastX}{\HilbertLastY}}
+}
+
+% \Hilbert[right_x,right_y,left_x,left_x,up_x,up_y,down_x,down_y]
+\def\Hilbert[#1,#2,#3,#4,#5,#6,#7,#8] {
+  \ifnum\value{HilbertOrder} > 0%
+     \addtocounter{HilbertOrder}{-1}
+     \Hilbert[#5,#6,#7,#8,#1,#2,#3,#4]
+     \DrawToNext {#1} {#2}
+     \Hilbert[#1,#2,#3,#4,#5,#6,#7,#8]
+     \DrawToNext {#5} {#6}
+     \Hilbert[#1,#2,#3,#4,#5,#6,#7,#8]
+     \DrawToNext {#3} {#4}
+     \Hilbert[#7,#8,#5,#6,#3,#4,#1,#2]
+     \addtocounter{HilbertOrder}{1}
+  \fi
+}
+
+
+% \hilbert((x,y),order)
+\def\hilbert((#1,#2),#3){%
+   \advance \HilbertLastX by #1
+   \advance \HilbertLastY by #2
+   \pgfpathmoveto{\pgfqpoint{\HilbertLastX}{\HilbertLastY}}
+   % Alternative implementation using plot streams:
+   % \pgfplothandlerlineto
+   % \pgfplotstreamstart
+   % \pgfplotstreampoint{\pgfqpoint{\HilbertLastX}{\HilbertLastY}}
+   \setcounter{HilbertOrder}{#3}
+   \Hilbert[1mm,0mm,-1mm,0mm,0mm,1mm,0mm,-1mm]
+   \pgfusepath{stroke}%
+}
+
+\begin{figure}[htp]%
+    \centering
+    % draw Hilbert curves of order n=1,...,5
+    % Warning! Curves with order > 6 may crash TeX
+    \subfigure[$n=1$]{\tikz[scale=18] \hilbert((0mm,0mm),1);}~~
+    \subfigure[$n=2$]{\tikz[scale=6] \hilbert((0mm,0mm),2);}~~
+    \subfigure[$n=3$]{\tikz[scale=2.6] \hilbert((0mm,0mm),3);}~~
+    \subfigure[$n=4$]{\tikz[scale=1.2] \hilbert((0mm,0mm),4);}~~
+    \subfigure[$n=5$]{\tikz[scale=0.58] \hilbert((0mm,0mm),5);}%
+    \caption{Hilbert-Kurve}\xindex{Hilbert-Kurve}
+    \label{fig:hilbert-curve}
+\end{figure}%

+ 6 - 0
documents/GeoTopo/figures/topology-spiral.tex

@@ -0,0 +1,6 @@
+% Thanks to Jake: http://tex.stackexchange.com/a/142815/5645
+\begin{tikzpicture}
+    \draw (0,0) circle [radius=1];
+    \draw [domain=1:18.8,variable=\t,smooth,samples=200,->,>=stealth']
+        plot ({\t r}: {1+2*exp(-0.1*\t)});
+\end{tikzpicture}

+ 31 - 0
tikz/topology-spiral/Makefile

@@ -0,0 +1,31 @@
+SOURCE = topology-spiral
+DELAY = 80
+DENSITY = 300
+WIDTH = 512
+
+make:
+	pdflatex $(SOURCE).tex -output-format=pdf
+	make clean
+
+clean:
+	rm -rf  $(TARGET) *.class *.html *.log *.aux *.data *.gnuplot
+
+gif:
+	pdfcrop $(SOURCE).pdf
+	convert -verbose -delay $(DELAY) -loop 0 -density $(DENSITY) $(SOURCE)-crop.pdf $(SOURCE).gif
+	make clean
+
+png:
+	make
+	make svg
+	inkscape $(SOURCE).svg -w $(WIDTH) --export-png=$(SOURCE).png
+
+transparentGif:
+	convert $(SOURCE).pdf -transparent white result.gif
+	make clean
+
+svg:
+	#inkscape $(SOURCE).pdf --export-plain-svg=$(SOURCE).svg
+	pdf2svg $(SOURCE).pdf $(SOURCE).svg
+	# Necessary, as pdf2svg does not always create valid svgs:
+	inkscape $(SOURCE).svg --export-plain-svg=$(SOURCE).svg

+ 3 - 0
tikz/topology-spiral/Readme.md

@@ -0,0 +1,3 @@
+Compiled example
+----------------
+![Example](topology-spiral.png)

二進制
tikz/topology-spiral/topology-spiral.png


+ 12 - 0
tikz/topology-spiral/topology-spiral.tex

@@ -0,0 +1,12 @@
+% Thanks to Jake: http://tex.stackexchange.com/a/142815/5645
+\documentclass[border=5pt]{standalone}
+\usepackage{tikz}
+\usetikzlibrary{arrows}
+
+\begin{document}
+\begin{tikzpicture}
+    \draw [red] (0,0) circle [radius=1];
+    \draw [domain=1:18.8,variable=\t,smooth,samples=200,->,>=stealth']
+        plot ({\t r}: {1+2*exp(-0.1*\t)});
+\end{tikzpicture}
+\end{document}