Aktuelles PDF gibt's auch hier: https://flavigny.de/lecture/pdf/analysis2 zum bequemeren Lesen.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

275 lines
12KB

  1. \documentclass{lecture}
  2. \begin{document}
  3. \begin{bem}[Bedeutung des Existenzsatz von Peano]
  4. Für die lokale Lösbarkeit des Systems $y' = f(t,y)$ reicht
  5. die Stetigkeit der rechten Seite. Aber auch wenn $f(t,y)$ auf einem
  6. Streifen $[a,b] \times \R^{n}$ stetig ist, kann nicht erwartet werden, dass die Lösung
  7. der AWA im Intervall $[a,b]$ definiert ist.
  8. Zum Beispiel: $y' = 1 + y^2$. $f(t,y) = 1 + y^2$ ist stetig auf $\R \times \R$. Als Lösung
  9. folgt $y = \tan(t + c)$, denn
  10. \begin{align*}
  11. y' = \frac{1}{\cos^2(t+c)} = \frac{\cos^2(t+c) + \sin^2(t+c)}{\cos^2(t+c)}
  12. = 1 + \tan^2(t+c) = 1 + y^2
  13. .\end{align*}
  14. Das heißt Lösungen sind nur in Intervallen der Länge $\pi$ definiert. Der Satz von Peano
  15. macht eine Aussage über die Größe des Existenzintervalls (die nur von Stetigkeitseigenschaften
  16. von $f(t,x)$ abhängig ist).
  17. \end{bem}
  18. \begin{figure}[h]
  19. \label{fig:tan-dgl-solution}
  20. \centering
  21. \begin{tikzpicture}
  22. \begin{axis}%
  23. [default 2d plot,
  24. ymax=4,
  25. ymin=-4,
  26. xmin=-4,
  27. xmax=4,
  28. xtick={-3.14, -1.57, 0, 1.57, 3.14},
  29. xticklabels={$\pi$, $-\frac{\pi}{2}$, $0$, $\frac{\pi}{2}$, $\pi$}
  30. ]
  31. \addplot[domain=1.58:4.70,samples=100,smooth,red] {tan(deg(x))};
  32. \addplot[domain=-1.56:1.56,samples=100,smooth,red] {tan(deg(x))};
  33. \addplot[domain=-4.72:-1.58,samples=100,smooth,red] {tan(deg(x))};
  34. \end{axis}
  35. \end{tikzpicture}
  36. \caption{Lösung $y = \tan(t+c)$ nur in Intervallen der Länge $\pi$ definiert.}
  37. \end{figure}
  38. \begin{satz}[Fortsetzungssatz]
  39. Sei $f(t,x)$ stetig auf $D \subseteq \R \times \R^{n}$, $D$ abgeschlossen und $(t_0, y_0) \in D$.
  40. Sei weiter $y(t)$ Lösung der AWA für $t \in [t_0 - T, t_0 + T]$.
  41. Dann ist $y$ nach rechts und links auf ein maximales Existenzintervall $I_{\text{max}} = (t_0 - T^{*}, t_0 + T^{*})$
  42. bis zum Rand von $D$ (stetig diff'bar) fortsetzbar.
  43. \end{satz}
  44. \begin{proof}
  45. Wiederholte Anwendung des Satz von Peano (siehe R.R. S. 111).
  46. \end{proof}
  47. \begin{bem}
  48. Die maximal fortgesetzten Lösungen nach links und rechts laufen bis der Graph von $y$ an
  49. den Rand von $D$ stößt. Dabei ist es möglich, dass
  50. \[
  51. \text{Graph}(y) = \{ (t, y(t)) , t \in I_{\text{max}}\}
  52. \] unbeschränkt ist, weil $t \to t_0 + T^{*} = \infty$ oder
  53. $\Vert y(t) \Vert \xrightarrow{t \to t_0 + T^{*}} \infty$.
  54. \begin{figure}[h]
  55. \centering
  56. \begin{tikzpicture}[declare function={f(\x) = tan(deg(\x-2));}]
  57. \begin{axis}%
  58. [default 2d plot,
  59. grid=none,
  60. ymax=4,
  61. ymin=-4,
  62. xmin=0,
  63. xmax=4,
  64. xtick=\empty, ytick=\empty,
  65. ]
  66. \addplot[domain=0.56:3.56,samples=100,smooth,red] {f(x)};
  67. \draw[dashed] (0.56, 5) -- (0.56, -5);
  68. \draw[dashed] (3.45, 5) -- (3.45, -5);
  69. \draw (2.56, {f(2.56)}) node[fill,inner sep=1pt]{};
  70. \draw (2.56, {f(2.56)}) node[draw,shape=rectangle,minimum width=10mm, minimum height=7mm,
  71. anchor=center] {};
  72. \draw (2.85, {f(2.85)}) node[fill,inner sep=1pt]{};
  73. \draw (2.85, {f(2.85)}) node[draw,shape=rectangle,minimum width=9mm, minimum height=7mm,
  74. anchor=center] {};
  75. \draw (3.02, {f(3.02)}) node[fill,inner sep=1pt]{};
  76. \draw (3.02, {f(3.02)}) node[draw,shape=rectangle,minimum width=6mm, minimum height=6mm,
  77. anchor=center] {};
  78. \draw (3.12, {f(3.12)}) node[fill,inner sep=1pt]{};
  79. \draw (3.12, {f(3.12)}) node[draw,shape=rectangle,minimum width=5mm, minimum height=5mm,
  80. anchor=center] {};
  81. \draw (3.18, {f(3.18)}) node[fill,inner sep=1pt]{};
  82. \draw (3.18, {f(3.18)}) node[draw,shape=rectangle,minimum width=4mm, minimum height=4mm,
  83. anchor=center] {};
  84. \draw (3.65, -4) node{$\partial D$};
  85. \end{axis}
  86. \end{tikzpicture}
  87. \caption{Schrittweise Fortsetzung einer Lösung bis zum Rand von $D$}
  88. \end{figure}
  89. \end{bem}
  90. \begin{korollar}[Globale Existenz]
  91. Sei $f(t,x)$ auf ganz $\R \times \R^{n}$ definiert und stetig. Seien alle lokalen Lösungen
  92. $y(t)$ beschränkt durch eine stetige Funktion $\rho\colon \R \to \R$ mit
  93. \[
  94. \Vert y(t) \Vert \le \rho(t), \quad t \in [t_0 - T, t_0 + T]
  95. .\] Dann ist $y$ fortsetzbar auf ganz $\R$.
  96. \end{korollar}
  97. \begin{proof}
  98. Wegen der Schranke, kann keine lokale Lösung auf einem beschränkten Zeitintervall
  99. einen unbeschränkten Graphen haben. Also ist $y$ fortsetzbar auf ganz $\R$.
  100. \end{proof}
  101. \begin{satz}[Regularitätssatz]
  102. Sei $y$ eine Lösung der AWA $y' = f(t,y)$ auf dem Intervall $I$ und
  103. sei $f \in C^{m}(D)$ mit $m \ge 1$. Dann gilt $y \in C^{m+1}(I)$.
  104. \end{satz}
  105. \begin{proof}
  106. Da $y(t)$ Lösung, folgt
  107. \[
  108. y(t) = y_0 + \int_{t_0}^{t} f(s,y(s)) \d s, \quad t \in I
  109. .\] Sei nun $f \in C^{1}(D)$. Dann ist $y$ zweimal stetig differenzierbar
  110. mit
  111. \begin{align*}
  112. y''(t) = \frac{\mathrm{d}}{\mathrm{d}t} f(t, y(t))
  113. = \underbrace{\frac{\partial}{\partial t} f(t, y(t))}_{\text{stetig}}
  114. + \underbrace{\frac{\partial}{\partial y} f(t, y(t))}_{\text{stetig}}
  115. \underbrace{\frac{\mathrm{d}y}{\mathrm{d}t}}_{= f \text{ also stetig}}
  116. .\end{align*}
  117. Durch Wiederholung dieses Arguments folgt $y \in C^{m+1}$ falls $f \in C^{m}(D)$ ist.
  118. \end{proof}
  119. \begin{bsp}
  120. Was kann passieren, falls $f(t,x)$ nicht stetig ist? Beispiel: Coulomb Reibung. Sei
  121. $c > 0$ und $v(0) = v_0$.
  122. \begin{align*}
  123. \dot{s} &= v \\
  124. \dot{v} &= -c \cdot \text{sign}(v)
  125. .\end{align*}
  126. Lösung: $v(t) = v_0 - ct$. Lösungen der DGL existieren ab $t = \frac{v_0}{c}$ nicht.
  127. Abhilfe: Philipov Regel (siehe Literatur).
  128. \begin{figure}[h]
  129. \centering
  130. \begin{tikzpicture}[declare function={f(\x) = -2;}]
  131. \begin{axis}%
  132. [%minor tick num=4,
  133. %grid style={line width=.1pt, draw=gray!10},
  134. %major grid style={line width=.2pt,draw=gray!50},
  135. axis lines=middle,
  136. legend pos=outer north east,
  137. %enlargelimits={abs=0.2},
  138. %ymax=5,
  139. %ymin=0
  140. width=0.6\textwidth, % Overall width of the plot
  141. axis equal image, % Unit vectors for both axes have the same length
  142. view={0}{90}, % We need to use "3D" plots, but we set the view so we look at them from straight up
  143. xmin=0, xmax=2, % Axis limits
  144. ymin=-1.1, ymax=1.1,
  145. domain=0:2, y domain=-1:1, % Domain over which to evaluate the functions
  146. xtick=\empty, ytick={1}, % Tick marks
  147. xticklabels={$t_0$},
  148. yticklabels={$v_0$},
  149. xlabel=$t$,
  150. ylabel=$v$,
  151. samples=7, % How many arrows?
  152. ]
  153. \addplot3[
  154. y domain=1:0.1,
  155. gray,
  156. quiver={
  157. u={1}, v={-2}, % End points of the arrows
  158. scale arrows=0.1,
  159. every arrow/.append style={
  160. -latex % Arrow tip
  161. },
  162. }] (x,y+0.1,0);
  163. \addplot3[
  164. forget plot,
  165. y domain=-1:-0.1,
  166. gray,
  167. quiver={
  168. u={1}, v={2}, % End points of the arrows
  169. scale arrows=0.1,
  170. every arrow/.append style={
  171. -latex % Arrow tip
  172. },
  173. }] (x, y-0.1,0);
  174. \addlegendentry{$f(t,v) = - c \cdot \text{sign}(v)$}
  175. \addplot[blue, domain=0:1] {2 - 2*x};
  176. \addlegendentry{$v^{(1)}(t) = - c + v_0^{(1)}$}
  177. \addplot[forget plot, blue, domain=0:0.5] {1 - 2*x};
  178. \addplot[red, domain=0:0.75] {-1.5 + 2*x};
  179. \addlegendentry{$v^{(2)}(t) = + c + v_0^{(2)}$}
  180. \end{axis}
  181. \end{tikzpicture}
  182. \caption{Mögliche Lösungen der DGL $\dot{v} = - c \cdot \text{sign}(v)$ mit
  183. $v_0^{(1)} > 0$ und $v_0^{(2)} < 0$. Ab $t = \frac{v_0}{c}$ existiert keine Lösung.}
  184. \end{figure}
  185. \end{bsp}
  186. \begin{bsp}[Uneindeutigkeit von AWA]
  187. \label{bsp:dgl-uneindeutig}
  188. Sei $y' = f(t,y) \coloneqq \sqrt{|y(t)|}$ mit $y(t_0) = y_0$. Es
  189. ist $f(t,y)$ stetig auf $\R \times \R$.
  190. Für $y_0 \ge 0$ gilt $\forall t_0 \in \R$:
  191. \begin{align*}
  192. y(t) &= \frac{(t-t_0 + 2 \sqrt{y_0})^2}{4} \qquad t_0 - 2 \sqrt{y_0} \le t < \infty
  193. \intertext{Für $y_0 \le 0$ gilt $\forall t_0 \in \R$:}
  194. y(t) &= - \frac{(t-t_0 - 2 \sqrt{-y_0})^2}{4} \qquad -\infty < t \le t_0 + 2 \sqrt{-y_0}
  195. \intertext{Für $y_0 = 0$ ist jedoch $\forall t_0 \in \R$ auch}
  196. y(t) &= 0
  197. .\end{align*}
  198. eine Lösung der AWA.
  199. Falls $y_0 > 0$ oder $y_0 < 0$ ist $y(t; t_0, y_0)$ eindeutig bestimmt, aber für $y(t_0) = 0$
  200. existieren unendlich viele Lösungen.
  201. \begin{figure}[h]
  202. \begin{subfigure}[b]{.5\linewidth}
  203. \begin{tikzpicture}
  204. \begin{axis}%
  205. [default 2d plot,
  206. grid=none,
  207. ymax=10,
  208. ymin=-10,
  209. xmin=-10,
  210. xmax=20,
  211. xtick={6}, ytick={4,-4},
  212. yminorticks=false,
  213. minor tick style={draw=none},
  214. xticklabels={$t_0$}, yticklabels={$y_0$, $y_0$}
  215. ]
  216. \addplot[domain=2:10,samples=100,smooth,red] {((x-6+4)^2)/4};
  217. \addplot[domain=-10:10,samples=100,smooth,blue] {-((x-6-4)^2)/4};
  218. \addplot[dashed,domain=10:20,samples=100,smooth,red] {((-(x-6)+4)^2)/4};
  219. \addplot[dashed,domain=-10:2,samples=100,smooth,blue] {-((x-6+4)^2)/4};
  220. \end{axis}
  221. \end{tikzpicture}
  222. \caption{Lösungen für $y_0 > 0$ (rot) bzw. $y_0 < 0$ (blau) und ihre Fortsetzungen.}
  223. \end{subfigure}
  224. \begin{subfigure}[b]{.5\linewidth}
  225. \begin{tikzpicture}
  226. \begin{axis}%
  227. [default 2d plot,
  228. grid=none,
  229. ymax=10,
  230. ymin=-10,
  231. xmin=-10,
  232. xmax=20,
  233. xtick={6}, ytick=\empty,
  234. xticklabels={$t_0$}
  235. ]
  236. \addplot[domain=-2:14,samples=100,smooth,orange] {0};
  237. \addplot[domain=14:20,samples=100,smooth,orange] {((x-18+4)^2)/4};
  238. \addplot[domain=-20:-2,samples=100,smooth,orange] {-((x+6-4)^2)/4};
  239. \addplot[domain=2:10,samples=100,smooth,blue] {0};
  240. \addplot[domain=10:20,samples=100,smooth,blue] {((x-14+4)^2)/4};
  241. \addplot[domain=-20:2,samples=100,smooth,blue] {-((x+2-4)^2)/4};
  242. \addplot[domain=4:8,samples=100,smooth,red] {0};
  243. \addplot[domain=8:20,samples=100,smooth,red] {((x-12+4)^2)/4};
  244. \addplot[domain=-20:4,samples=100,smooth,red] {-((x-4)^2)/4};
  245. %\addplot[dashed,domain=10:20,samples=100,smooth,red] {((-(x-6)+4)^2)/4};
  246. %\addplot[dashed,domain=-10:2,samples=100,smooth,blue] {-((x-6+4)^2)/4};
  247. \end{axis}
  248. \end{tikzpicture}
  249. \caption{Für $y_0 = 0$ existieren beliebig viele zusammengesetzte Lösungen.}
  250. \end{subfigure}
  251. \caption{Zur Uneindeutigkeit von AWA}
  252. \end{figure}
  253. Beobachtung: $f(t,x)$ ist stetig auf $\R \times \R$, aber $f(t,x)$ ist nicht Lipschitz stetig
  254. in $(t,0)$ $\forall t \in \R$.
  255. \end{bsp}
  256. \end{document}