Aktuelles PDF gibt's auch hier: https://flavigny.de/lecture/pdf/analysis2 zum bequemeren Lesen.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

318 řádky
19KB

  1. \documentclass{lecture}
  2. \begin{document}
  3. \chapter{Kurven im \texorpdfstring{$\R^{n}$}{R\unichar{"207F}}}
  4. \section{Kurven}
  5. \begin{definition}[Kurve]
  6. Eine Kurve $\gamma$ im $\R^n$ ist eine stetige Abbildung $\gamma\colon I\to \R^n$, $I$ Intervall (z.B. $I = [a,b]$ oder $I = \R$.) Schreibweise: \[\gamma(t) = \begin{pmatrix}
  7. \gamma_1(t)\\
  8. \vdots\\
  9. \gamma_n(t)
  10. \end{pmatrix}.\]
  11. Dabei gilt $\gamma$ stetig $\Leftrightarrow$ $\gamma_i$ stetig $\forall i = 1,\dots, n$.
  12. \end{definition}
  13. \begin{bsp}
  14. \begin{figure}[h]
  15. \captionsetup[subfigure]{justification=justified,singlelinecheck=false}
  16. \begin{subfigure}[b]{0.3\textwidth}
  17. \begin{tikzpicture}
  18. \draw[color=white] (-.5,-.5) -- (0,0);
  19. \draw[->,color=blue, thick] (1,1) -- (2,2);
  20. \draw (0,0) -- (2,2);
  21. \node at (1,1) {\textbullet};
  22. \node[below] at (1,1) {$a$};
  23. \end{tikzpicture}
  24. \subcaption{Beispiel 1, Gerade}
  25. \end{subfigure}
  26. \begin{subfigure}[b]{0.3\textwidth}
  27. \begin{tikzpicture}
  28. \draw (0,0) circle (1.5cm);
  29. \node at (0,0) {\textbullet};
  30. \node[below right] at (0,0) {$a$};
  31. \draw[->, thick] (0,0) -- node[pos=.5, above left] {$r$} (1.05,1.05);
  32. \end{tikzpicture}
  33. \subcaption{Beispiel 2, Kreis}
  34. \end{subfigure}
  35. \begin{subfigure}[b]{0.35\textwidth}
  36. \begin{tikzpicture}[scale=0.6]
  37. \begin{axis}[
  38. grid = major
  39. ]
  40. \addplot3[variable=t,mesh,samples=70,domain=0:2] (cos(360*t), { sin(360* t) }, 0.5*t);
  41. \end{axis}
  42. \end{tikzpicture}
  43. \subcaption{Beispiel 3, Helix}
  44. \end{subfigure}
  45. \end{figure}
  46. \begin{enumerate}
  47. \item Gerade in $\R^n$ durch einen Punkt $a\in \R^n$ in Richtung $v \in \R^n\setminus\{0\}$:
  48. \[
  49. \gamma(t) = a + tv,\; I = \R.
  50. \]
  51. \item Kreis in $\R^2$ um $a\in \R^2$ mit Radius $r > 0$
  52. \[
  53. \gamma(t) = a + r\begin{pmatrix}
  54. \cos(t)\\
  55. \sin(t)
  56. \end{pmatrix},\; t\in [0, 2\pi]
  57. \]
  58. \item Helix in $\R^3$ mit $r > 0, c \neq 0$.
  59. \[
  60. \gamma(t) = \begin{pmatrix}
  61. r\cos(t)\\
  62. r\sin(t)\\
  63. c\cdot t
  64. \end{pmatrix}
  65. \]
  66. \end{enumerate}
  67. \end{bsp}
  68. \begin{definition}[Differenzierbarkeit]
  69. \begin{enumerate}
  70. \item $\gamma$ heißt stetig differenzierbar, wenn $\gamma_1, \dots, \gamma_n$ stetig differenzierbar sind. Dabei bezeichnet man
  71. \[\gamma'(t) = \begin{pmatrix}
  72. \gamma_1'(t)\\
  73. \vdots\\
  74. \gamma_n'(t)
  75. \end{pmatrix}\]
  76. als Tangential- bzw. Geschwindigkeitsvektor.
  77. \item $\gamma$ heißt regulär, wenn gilt: $\forall t\in I$ gilt $\gamma'(t)\neq 0$.
  78. \item $r(t) \coloneqq \norm{\gamma'(t)}_2\colon I\to \R$ heißt Geschwindigkeit von $\gamma$.
  79. \[
  80. \norm{\gamma'(t)}_2 = \sqrt{|\gamma_1'(t)|^2 + \dots + |\gamma_n'(t)|^2}
  81. \]
  82. \end{enumerate}
  83. \end{definition}
  84. \begin{figure}
  85. \begin{subfigure}[b]{0.4\textwidth}
  86. \begin{tikzpicture}[scale=0.7]
  87. \begin{axis}[axis lines=middle]
  88. \addplot [domain=-2:2,samples=40]({x^2-1},{x^3-x});
  89. \node[color=red] (a) at (0,0) {\textbullet};
  90. \end{axis}
  91. \end{tikzpicture}
  92. \subcaption{Beispiel 4: nicht injektive Kurve,\\ \textcolor{red}{\textbullet} liegt bei $t = \pm 1$.}
  93. \end{subfigure}
  94. \begin{subfigure}[b]{0.4\textwidth}
  95. \begin{tikzpicture}[scale=0.7]
  96. \begin{axis}[axis lines=middle]
  97. \addplot [domain=-2:2,samples=40]({x^2},{x^3});
  98. \node[color=red] (a) at (0,0) {\textbullet};
  99. \end{axis}
  100. \end{tikzpicture}
  101. \subcaption{Beispiel 5: Neilsche Parabel, \textcolor{red}{\textbullet} liegt bei $t = 0$ und ist ein singulärer Punkt.}
  102. \end{subfigure}
  103. \end{figure}
  104. \begin{bsp}
  105. \begin{enumerate}
  106. \item Gerade: $\gamma(t) = a + v\cdot t$.
  107. \[
  108. \gamma'(t) = \begin{pmatrix}
  109. v_1\\
  110. \vdots\\
  111. v_n
  112. \end{pmatrix} = v,\; r(t) = \norm{v}_2 \xRightarrow{v\neq 0} \gamma \text{ ist regulär}
  113. \]
  114. \item Kreis: $\gamma(t) = a + r\begin{pmatrix}
  115. \cos(t)\\
  116. \sin(t)
  117. \end{pmatrix}$.
  118. \[
  119. \gamma'(t) = r\begin{pmatrix}
  120. -\sin(t)\\
  121. \cos(t)
  122. \end{pmatrix} \xRightarrow{r \neq 0} \gamma'(t) \neq 0\;\forall t,
  123. \]
  124. da $\sin$ und $\cos$ keine gemeinsamen Nullstellen haben.
  125. \[
  126. r(t) = \norm{\gamma'(t)}_2 = \sqrt{r^2\sin^2(t) + r^2\cos^2(t)} = r
  127. \]
  128. \item Helix: $\gamma(t) = \left(r\cos(t), r\sin(t), ct\right)^T$
  129. \[
  130. \gamma'(t) = \begin{pmatrix}
  131. -r\sin(t)\\
  132. r\cos(t)\\
  133. c
  134. \end{pmatrix} \neq 0\; (c \neq 0)
  135. \]
  136. Außerdem ist
  137. \[
  138. r(t) = \sqrt{r^2 + c^2} > 0
  139. \]
  140. \item Kurven stellen nicht notwendig injektive Abbildungen dar.
  141. \[
  142. \gamma\colon \R\to \R^2,\quad \gamma(t) = \begin{pmatrix}
  143. t^2-1\\
  144. t^3-t
  145. \end{pmatrix}
  146. \]
  147. Das Bild von $\gamma$ ist $\gamma(\R) = \{(x,y)\in \R^2\colon y^2 = x^2 + x^3\}$. Dabei ist $\gamma(-1) = \begin{pmatrix}
  148. 0\\0
  149. \end{pmatrix} = \gamma(1)$. Allerdings ist $\gamma'(t) = \begin{pmatrix}
  150. 2t\\3t^2-1
  151. \end{pmatrix}$ bei $-1$ gleich $\begin{pmatrix}
  152. -2\\2
  153. \end{pmatrix}$ und bei $1$ gleich $\begin{pmatrix}
  154. 2\\2
  155. \end{pmatrix}$.
  156. \item Neilsche Parabel $\gamma\colon \R \to \R^2, \quad \gamma(t) = (t^2, t^3)$. Das Bild von $\gamma$ ist $\gamma(\R) = \{(x,y) \in \R^2\colon x\geq 0, y = \pm \sqrt{x^3}\}$. Es gilt $\gamma'(t) = \begin{pmatrix}
  157. 2t\\3t^2
  158. \end{pmatrix}$ und daher insbesondere $\gamma'(0) = \begin{pmatrix}
  159. 0\\0
  160. \end{pmatrix}$. Daher ist $\gamma(t)$ nicht regulär und $t = 0$ ist ein singulärer Punkt.
  161. \end{enumerate}
  162. \end{bsp}
  163. \begin{definition}[Tangente]
  164. Sei $\gamma\in C^1(I;\R^n)$. Sei ein $t_0\in I$ regulär (d.h. $\gamma'(t_0) \neq 0$). Dann ist die Tangente an $\gamma(t_0)$ eine Gerade durch $\gamma(t_0)$ in Richtung $\gamma'(t_0)$
  165. \[
  166. \gamma(t_0) + s\gamma'(t_0) \mid s\in \R\}.
  167. \]
  168. \end{definition}
  169. \section{Die Bogenlänge}
  170. Sei $\gamma\colon I \to \R^n$ eine stetige Kurve. Sei $\mathcal{Z} = \{t_0,t_1,\dots, t_M\},\;t_i\in I$ eine Partition des Intervalls $I$. $\mathcal{Z}$ definiert ein Sehnenpolygon von $\gamma$ mit Ecken $\gamma(t_0),\dots, \gamma(t_M)$ der Länge
  171. \[
  172. S(\mathcal{Z})\coloneqq \sum_{i = 1}^{M}\norm{\gamma(t_i)- \gamma(t_{i-1})}_2,\; S(\mathcal{Z})\in \R.
  173. \]
  174. Sei $\mathcal{Z}^*$ eine weitere Partition des Intervalls $I$, die aus $z$ durch Hinzunahme weiterer Teilungspunkte entsanden ist, dann gilt $S(\mathcal{Z}^*) \geq S(\mathcal{Z})$.
  175. Betrachte Teilintervall $[t_0,t_1]$ und sei $t_0 = s_0 < s_1 < \dots < s_K = t_1$, dann ist
  176. \[
  177. \norm{\gamma(t_1) - \gamma(t_0)} = \norm{\sum_{i = 1}^{K} \gamma(s_i) - \gamma(s_{i-1})} \leq \sum_{i = 1}^{K}\norm{\gamma(s_i) - \gamma(s_{i-1})} \implies S(\mathcal{Z}) \leq S(\mathcal{Z}^*).
  178. \]
  179. Seien $\mathcal{Z}_1$ und $\mathcal{Z}_2$ zwei Zerlegungen und $\mathcal{Z}^*$ eine gemeinsame Verfeinerung. Dann gilt $S(\mathcal{Z}^*) \geq \max(S(\mathcal{Z}_1), S(\mathcal{Z}_2))$
  180. \begin{definition}[Rektifizierbarkeit]
  181. Eine stetige Kurve $\gamma\in C^0(I;\R^n)$ heißt rektifizierbar, wenn die Menge aller Längen $S(\mathcal{Z})$ von Polygonen zu Partitionen $\mathcal{Z}$ von $I$ beschränkt ist. In diesem Fall heißt $S(\gamma) \colon \sup\{S(\mathcal{Z})\mid \mathcal{Z} \text{ Partition von } I\}$ die Länge von $\gamma$, in anderen Worten $\forall\epsilon > 0,\; \exists \delta > 0, \;\forall$ Partitionen von $I$ gilt:
  182. \[
  183. \max_i |t_{i-1} - t_i| < \delta \implies |S(\mathcal{Z}) - S(\gamma)| < \epsilon
  184. \]
  185. \end{definition}
  186. \begin{bsp}[Lipschitz-stetige Kurven]
  187. Sei $\gamma\colon I\to \R$ Lipschitz-stetig mit $|I| < \infty$, dann gilt für alle Zerlegungen $\mathcal{Z}$ von $I$:
  188. \[
  189. S(\mathcal{Z}) = \sum_{i = 1}^{M}\norm{\gamma(t_i) - \gamma(t_{i-1})} \oldstackrel{\gamma \text{ L-stetig}}{\le} \sum_{i = 1}^{M} L\cdot |t_i - t_{i-1}| = L\cdot |I|
  190. \]
  191. Also ist $\gamma$ rektifizierbar.
  192. \end{bsp}
  193. \begin{satz}[Kurvenlänge stückweiser $C^1$-Kurven]
  194. Sei $\gamma\in C^0([a,b],\R^n)$ eine stetige Kurve mit $[a,b]$ kompakt, $\gamma$ stückweise $C^1$, d.h. $\exists$ Zerlegung $a = s_0 < s_1 <\dots < s_M = b$ mit
  195. \[
  196. \left.\gamma\right|_{[s_{i-1}, s_i]} \in C^1([s_{i-1},s_i], \R^n),\quad \forall i = 1, \dots, M.
  197. \]
  198. Dann ist $\gamma$ rektifizierbar und hat die Länge \[S(\gamma) = \int_a^b \norm{\gamma'(t)}_2\d t = \sum_{i = 1}^{M}\int_{s_{i-1}}^{s_i} \norm{\gamma'(t)}_2 \d t.\]
  199. Insbesondere hat der Graph einer $C_1$-Funktion $f\in C^1([a,b], \R), \quad \gamma_f(t)\colon (t, f(t))^T$ die Länge \[S(\gamma_f) = \int_a^b \sqrt{1 + f'(t)^2} \d t.\]
  200. \end{satz}
  201. \begin{proof}
  202. Sei $\mathcal{Z} = \{t_0, \dots, t_N\}$ eine Partition, betrachte $\mathcal{Z}^* = \mathcal{Z} \cup \{s_0,\dots, s_M\} = \{x_0,\dots, x_K\}$. Dann gilt
  203. \begin{salign*}
  204. S(\mathcal{Z}) &\leq S(\mathcal{Z}^*)\\
  205. &= \sum_{i = 1}^{K}\norm{\gamma(x_i) - \gamma(x_{i-1})}\\
  206. &\stackrel{\text{HDI}}{=} \sum_{i = 1}^{K}\norm{\int_{x_{i-1}}^{x_i} \gamma'(t)\d t}\\
  207. &\stackrel{\triangle-\text{UGl.}}{\le} \sum_{i = 1}^{K}\int_{x_{i-1}}^{x_i} \norm{\gamma'(t)} \d t\\
  208. &= \int_a^b\norm{\gamma'(t)}\d t
  209. \end{salign*}
  210. Also ist $\gamma$ rektifizierbar und $S(\gamma) \leq \int_a^b \norm{y'(t)}\d t$.
  211. Z.Z. $\forall \epsilon > 0\; \exists$ Zerlegung mit
  212. \[
  213. S(\mathcal{Z}) \geq \int_a^b \norm{\gamma'(t)} \d t - \epsilon.
  214. \]
  215. Fixiere dazu ein $\epsilon > 0$. Wähle dann eine Treppenfunktion $\varphi$ auf $[a,b]$ mit \[\norm{\gamma'(t) - \varphi(t)} \le \frac{\epsilon}{2(b-a)} \forall t\in [a,b]\setminus\{s_0,\dots, s_M\}\]
  216. ($\varphi$ existiert, weil $\gamma'(t)$ stückweise stetig ist). Wähle ferner eine (feine) Partition $a = t_0< t_1< \dots < t_N = b$, s.d. $\varphi\big|_{[t_{i-1}, t_i]}$ konstant ist $\forall i = 1,\dots, N$. Dann gilt nämlich
  217. \begin{salign*}
  218. S(Z) &= \sum_{i = 1}^{N}\norm{\int_{t_{i-1}}^{t_i} \gamma'(t) \d t}\\
  219. &= \sum_{i = 1}^{N}\norm{\int_{t_{i-1}}^{t_i} \varphi(t) + (\gamma'(t) - \varphi(t))\d t}\\
  220. &\geq \sum_{i = 1}^{N}\left( \norm{\int_{t_{i-1}}^{t_i} \varphi(t)\d t} - \norm{\int_{t_{i-1}}^{t_i} (\gamma'(t) - \varphi(t)) \d t}\right)\\
  221. &\geq \sum_{i = 1}^{N}\left( \norm{\int_{t_{i-1}}^{t_i} \varphi(t)\d t} - \frac{\epsilon}{2(b-a)} |t_i-t_{i-1}|\right)\\
  222. &\geq \sum_{i = 1}^{N}\norm{\int_{t_{i-1}}^{t_i} \varphi(t) \d t} - \sum_{i = 1}^{N}\frac{\epsilon}{2(b-a)}|t_i-t_{i-1}|\\
  223. &= \sum_{i = 1}^{N}\norm{\int_{t_{i-1}}^{t_i} \varphi(t) \d t} - \frac{\epsilon}{2}\\
  224. &\stackrel{\varphi(t) = \mathrm{const}}{=} \sum_{i = 1}^{N}\int_{t_{i-1}}^{t_i} \norm{\varphi(t)} \d t - \frac{\epsilon}{2}\\
  225. &= \sum_{i = 1}^{N}\norm{\gamma'(t) + (\varphi(t) - \gamma'(t))} \d t - \frac{\epsilon}{2}\\
  226. &\stackrel{\text{analog}}{\geq} \sum_{i = 1}^{N}\int_{t_{i-1}}^{t_i} \norm{\gamma'(t)} \d t - \epsilon = \int_a^b\norm{\gamma'(t)} \d t - \epsilon
  227. \end{salign*}
  228. Also existiert für ein beliebiges $\epsilon > 0$ eine Zerlegung $\mathcal{Z}$ mit $S(\mathcal{Z}) \geq \int_a^b\norm{\gamma'(t)}\d t - \epsilon$. Zusammen mit $S(y) \leq \int_a^b\norm{\gamma'(t)}\d t$ folgt $S(\gamma) = \int_a^b \norm{\gamma'(t)} \d t$.
  229. \end{proof}
  230. \begin{figure}[h]
  231. \captionsetup[subfigure]{justification=justified,singlelinecheck=false}
  232. \begin{subfigure}[b]{0.3\textwidth}
  233. \begin{tikzpicture}
  234. \draw[color=white] (-.5,-.5) -- (0,0);
  235. \draw[color=black] (1.5,0) arc [start angle=0, end angle=200, radius=1.5] -- node[pos=.5, below] {$r$} (0,0);
  236. \draw[color=blue] (1.5,0) arc [start angle=0, end angle=200, radius=1.5];
  237. \draw[color=black] (.4,0) arc [start angle=0, end angle=200, radius=.4];
  238. \draw (0,0) -- node[pos=.5,below] {$r$} (1.5,0);
  239. \node[color = blue] at (1.6,.4) {$\gamma$};
  240. \node at (0,.2) {$\varphi$};
  241. \end{tikzpicture}
  242. \subcaption{Beispiel 1: Kreisbogen}
  243. \end{subfigure}
  244. \begin{subfigure}[b]{0.6\textwidth}
  245. \begin{tikzpicture}
  246. \begin{axis}[axis equal image, axis lines=middle,width=\textwidth, xticklabels={0, $\pi$, $2\pi$}, xtick={0,3.14,6.28}, ymin=0,ymax=2, smooth]
  247. \addplot[domain=0:6.28] ({x-sin(180/3.14 * x)},{1-cos(180/3.14 * x)});
  248. \draw (3.14,1) circle (1);
  249. \node at (3.14,2) {\textbullet};
  250. \end{axis}
  251. \end{tikzpicture}
  252. \subcaption{Beispiel 2: Zykloide}
  253. \end{subfigure}
  254. \end{figure}
  255. \begin{bsp}
  256. \begin{enumerate}
  257. \item Kreisbogen: $\gamma(t) = \begin{pmatrix}
  258. r\cos(t)\\
  259. r\sin(t)\\
  260. \end{pmatrix},\; \gamma \in C^\infty([0,\varphi], \R^2),\; r > 0,\; \varphi > 0$ fest. Es gilt $S(\gamma) = \int_0^\varphi\norm{\gamma'(t)}_2 \d t = \int_0^\varphi \norm{\begin{pmatrix}
  261. -r\sin(t)\\ r\cos(t)
  262. \end{pmatrix}}_2 \d t = \int_0^\varphi r\d t = r\varphi$. Also ist der Umfang des Einheitskreises genau $\int_0^{2\pi} \underbrace{r}_{=1} \d t = 2\pi$.
  263. \item Zykloide $\gamma\colon [0,2\pi] \to \R^2,\; r(t) = \begin{pmatrix}
  264. t-\sin(t)\\1-\cos(t)
  265. \end{pmatrix}$.
  266. Wir erhalten $\gamma'(t) = \begin{pmatrix}
  267. 1 - \cos(t)\\\sin(t)
  268. \end{pmatrix}$ und daher
  269. $\norm{\gamma'(t)}_2^2 = 1 - 2 \cos(t) + \cos^2(t) + \sin^2(t) = 2 - 2\cos(t) = 4 \sin^2(\frac{t}{2})$. Insgesamt gilt also
  270. \[
  271. S(\gamma) = \int_0^{2\pi} \underbrace{\left|2\sin\left(\frac{t}{2}\right)\right|}_{\geq 0} \d t \oldstackrel{x = \frac{t}{2}}{=} 4\int_0^\pi \sin(x) \d x = 8\]
  272. \end{enumerate}
  273. \end{bsp}
  274. \section{Parametertransformationen}
  275. \begin{definition}[Parametertransformation]
  276. \begin{enumerate}
  277. \item Sei $\varphi\colon [\alpha, \beta]\! \to\! [a,b]$ eine $C^k$-Abbildung $(k\in \N_0 \cup \infty_+)$ zwischen den Intervallen $[\alpha,\beta]$ und $[a,b]$,
  278. sei außerdem $\varphi$ bijektiv und $\varphi^{-1} \in C^k([a,b],\;[\alpha, \beta])$.
  279. Dann heißt $\varphi$ eine $C^k$-Parametertransformation.
  280. \item Sei weiter $\gamma\colon [a,b]\to\R^n$ eine Kurve. Dann heißt die Kurve $\delta:[\alpha, \beta] \to \R^n,\;\delta \coloneqq \gamma\circ \varphi$ die Umparametrisierung von $\gamma$ (mittels $\varphi$).
  281. \item Die Parametertransformation $\varphi\colon [\alpha,\beta] \to [a,b]$ heißt orientierungstreu (oder orientierungserhaltend), wenn $\varphi$ streng monoton wächst; $\varphi$ heißt orientierungsumkehrend, wenn $\varphi$ streng monoton fällt.
  282. \end{enumerate}
  283. \end{definition}
  284. \begin{bem}
  285. \begin{enumerate}
  286. \item Falls $\varphi$ eine $C^1$-Parametertransformation ist, dann gilt \[\varphi'(t) \neq 0,\;\forall t\in I,\]d.h. $\varphi$ ist ein Diffeomorphismus. Ferner heißt $\varphi$ orientierungstreu, falls $\varphi'(t) > 0$ und orientierungsumkehrend, falls $\varphi'(t) < 0$.
  287. \item Die Bogenlänge $S(\gamma)$ ändert sich nicht beim Umparametrisieren: Seien $\varphi, \varphi^{-1}$ stetig differenzierbar, $\gamma\in C^1([a,b], \R^n)$. Dann gilt für die Bogenlänge
  288. \begin{salign*}
  289. S(\gamma\circ \varphi) &= \int_\alpha^\beta \norm{(\gamma\circ \varphi)'(\tau)} \d \tau\\
  290. &\stackrel{\text{Kettenregel}}{=} \int_\alpha^\beta\norm{\gamma'(\varphi(\tau)) \cdot \varphi'(\tau)} \d \tau\\
  291. &= \begin{cases}
  292. \int_\alpha^\beta \norm{\gamma'(\varphi(\tau))}\cdot \varphi'(\tau) \d \tau&\varphi'(\tau) > 0, \tau \in [a,b]\\
  293. -\int_\alpha^\beta \norm{\gamma'(\varphi(\tau))}\cdot \varphi'(\tau) \d \tau&\varphi'(\tau) < 0, \tau \in [a,b]\\
  294. \end{cases}\\
  295. &\stackrel{\substack{t=\varphi(\tau)\\\d t = \varphi'(\tau)\d \tau}}{=}
  296. \begin{cases}
  297. \int_a^b\norm{\gamma'(t)} \d t&\varphi'(\tau) > 0, \tau \in [a,b]\\
  298. -\int_b^a \norm{\gamma'(t)} \d t &\varphi'(\tau) < 0, \tau \in [a,b]\\
  299. \end{cases}\\
  300. &= \int_a^b\norm{\gamma'(t)} \d t\\
  301. &= S(\gamma)
  302. \end{salign*}
  303. \item Umparametrisierung auf Bogenlänge. Sei $\gamma\colon [a,b] \to \R^n$ eine reguläre $C^1$-Kurve, d.h. $\gamma'(t) \neq 0\forall t\in [a,b]$. Definiere die Abbildung $\sigma\colon [a,b] \to [0, S(\gamma)]$ durch
  304. \[
  305. \sigma(t) \coloneqq \int_a^t\norm{\gamma'(\tau)} \d \tau \left(= S(\gamma(t))\bigg|_{[a,t]}\right).
  306. \]
  307. Wir können zeigen, dass $\varphi\coloneqq \sigma^{-1}$ eine orientierungstreue $C^1$-Parametertransformation ist und für die (\glqq auf Bogenlänge\grqq) umparametrisierte Kurve $\beta\colon [0,S(\gamma)]\to \R^n$ gilt \[S\left(\beta\big|_{[0,x]}\right) = x,\; \norm{\beta'(x)} = 1,\; \forall x\in [0,S(\gamma)].\]
  308. \begin{proof}
  309. Es gilt $\sigma \in C^1([a,b];\;[0,S(\gamma)])$ mit $\sigma'(t) = \norm{\gamma'(t)} > 0$. Daher ist $\sigma$ streng monoton wachsend und bijektiv. Wegen Satz \ref{umkehrfunktion} folgt
  310. \[
  311. \underbrace{\sigma^{-1}}_{\eqqcolon \varphi} \in C^1([0,S(y)];\; [a,b]),\; (\sigma^{-1})'(x) = \varphi'(x) = \frac{1}{\norm{\gamma'(\varphi(x))}} > 0.
  312. \]
  313. Also ist $\varphi$ streng monoton wachsend und daher muss $\varphi$ orientierungstreu sein. Für \[\beta\colon [0,S(\gamma)]\to \R^n,\quad \beta \coloneqq \gamma \circ \varphi\] gilt \[\beta'(x) \oldstackrel{\text{Kettenregel}}{=} \gamma'(\varphi(x))\cdot \varphi'(x) = \frac{\gamma'(\varphi(x))}{\norm{\gamma'(\varphi(x))}}.\] Also erhalten wir $\norm{\beta'(x)} = 1\;\forall x\in [0,S(\gamma)]$ und damit $S\left(\beta|_{[0,x]}\right) = \int_0^x \norm{\beta'(s)}\d s = x$.
  314. \end{proof}
  315. \end{enumerate}
  316. \end{bem}
  317. \end{document}