Aktuelles PDF gibt's auch hier: https://flavigny.de/lecture/pdf/analysis2 zum bequemeren Lesen.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

385 lines
20KB

  1. \documentclass{lecture}
  2. \begin{document}
  3. \newcommand{\dv}[2]{\frac{\mathrm{d} #1}{\mathrm{d} #2}}
  4. \newcommand{\graph}{\operatorname{Graph}}
  5. \chapter{Systeme gewöhnlicher Differentialgleichungen}
  6. \section{Explizite Differentialgleichungen}
  7. Differentialgleichungen (DGLn) sind Gleichungen der Form
  8. \[
  9. F(t,y,y',\dots, y^{(n)}) = 0\quad\text{implizite Form}
  10. \] oder
  11. \[
  12. y^{(n)} = f(t,y,y',\dots,y^{(n-1)})\quad\text{explizite Form}
  13. \]
  14. für eine gesuchte Funktion $y = y(t),\; t\in I,\; I\subset \R$ ,,Zeitinvervall``. % $(y^{(k)} = \frac{\d[k]}{\d t^k} y)$.
  15. Differentialgleichungen $n$-ter Ordnung sind äquivalent zu speziellen Systemen von Differentialgleichungen 1. Ordnung. Betrachte $y^{(n)} = f(t,y,y',\dots,y^{(n-1)})$ (sei $y\colon I\to \R,I\subset \R)$. Definiere Hilfsvariablen:
  16. \begin{align*}
  17. x_1 &\coloneqq y\\
  18. x_2 &\coloneqq y'\\
  19. &\vdots\\
  20. x_n &\coloneqq y^{(n-1)},
  21. \end{align*}
  22. also $x\in \R^n$. Ein äquivalentes System von Differentialgleichungen 1. Ordnung ist dann
  23. \[
  24. x' = \tilde{f}(t,x),\quad \tilde{f} = \begin{pmatrix}
  25. x_2\\x_3\\\vdots\\f(t,x)
  26. \end{pmatrix}
  27. \]
  28. Ein allgemeines System von Differentialgleichungen 1. Ordnung hat die Form
  29. \[
  30. x' = f(t,x),\quad x\in \R^n,\quad f\in \R^n
  31. \]
  32. Notationen: $x' = f(t,x), \dot x = f(t,x), \dv{x}{t} = f(t,x)$ (Dynamischer Prozess, der sich mit der Zeit ändert.)
  33. \begin{bsp}
  34. \begin{enumerate}
  35. \item einfache lineare Differentialgleichung \[x' = \alpha x,\quad \alpha \in \R\] hat die Lösung $x(t) = c\cdot e^{\alpha t}$, da \[\dv{f}{t} = c\cdot e^{\alpha t}\cdot \alpha = \alpha \cdot x(t)\]
  36. \item Newton: Kraft = Masse $\cdot$ Beschleunigung. \begin{align*}
  37. y(t)&\in \R &&\text{Ort eines Massenpunktes zur Zeit $t$}\\
  38. y'(t)&\in \R &&\text{Geschwindigkeit}\\
  39. y''(t)&\in \R &&\text{Beschleunigung}
  40. \end{align*}
  41. Kraftfunktion: $f(t,y,y') \in \R$.
  42. \[
  43. my'' = f(t,y,y')\quad \text{DGL 2. Ordnung}
  44. \]
  45. äquivalent zum System:
  46. \begin{align*}
  47. x_1'&= x_2& \text{mit } x_1 &= y,\\
  48. x_2'&= \frac{1}{m}f(t,x_1,x_2)& x_2&= y'
  49. \end{align*}
  50. \item Räuber-Beute-Gleichungen (Lotka-Volterra-Gleichungen)
  51. \begin{align*}
  52. N_1 &= N_1(t) &&\text{Anzahl von Beute}\\
  53. N_2 &= N_2(t) &&\text{Anzahl von Räuber}\\
  54. N_1' &= \alpha N_1 - \beta N_1N_2 &&\alpha > 0\text{ Reproduktionsrate der Beute}\\
  55. &&&\beta > 0\text{ Fressrate der Räuber pro Beute}\\
  56. N_2' &= -\gamma N_2 + \delta N_1N_2&&\gamma > 0\text{ Sterberate der Räuber, wenn keine Beute vorhanden ist}\\
  57. & &&\delta > 0\text{ Reproduktionsrate der Räuber pro Beute}
  58. \end{align*}
  59. \item SIR - Modell aus Epidemiologie (z.B. Corona):
  60. \begin{center}
  61. \begin{tabular}{ccc}
  62. succeptible & infected & removed\\
  63. $S(t)$ & $I(t)$ & $R(t)$
  64. \end{tabular}
  65. \end{center}
  66. \begin{align*}
  67. N &= I + S + R\\
  68. \dv{S}{t} &= \nu N - \beta \frac{SI}{N}-\mu S\\
  69. \dv{I}{t} &= \beta \frac{SI}{N} - \gamma I - \mu I\\
  70. \dv{R}{t} &= \gamma I - \mu R
  71. \end{align*}
  72. Dabei sei
  73. \begin{align*}
  74. \gamma&\text{ die Rate, mit der Infizierte genesen oder sterben,}\\
  75. \mu&\text{ die allgemeine Sterberate pro Person,}\\
  76. \nu&\text{ die Geburtsrate pro Person,}\\
  77. \beta&
  78. \text{ die Anzahl neuer Infektionen, die ein erster infektiöser Fall pro Zeit verursacht und}\\
  79. \frac{\beta}{N}& \text{ die Transmissionsrate.}
  80. \end{align*}
  81. \end{enumerate}
  82. \end{bsp}
  83. \begin{figure}[h]
  84. \centering
  85. \begin{tikzpicture}[declare function={f(\x) = 2*(\x-0.25);}]
  86. \begin{axis}%
  87. [%minor tick num=4,
  88. %grid style={line width=.1pt, draw=gray!10},
  89. %major grid style={line width=.2pt,draw=gray!50},
  90. %axis lines=middle,
  91. %enlargelimits={abs=0.2},
  92. %ymax=5,
  93. %ymin=0
  94. width=0.6\textwidth, % Overall width of the plot
  95. axis equal image, % Unit vectors for both axes have the same length
  96. view={0}{90}, % We need to use "3D" plots, but we set the view so we look at them from straight up
  97. xmin=0, xmax=1.1, % Axis limits
  98. ymin=0, ymax=1.1,
  99. domain=0:1, y domain=0:1, % Domain over which to evaluate the functions
  100. xtick={0.7}, ytick={0.3525}, % Tick marks
  101. xticklabels={$t_0$},
  102. yticklabels={$y_0$},
  103. xlabel=$t$,
  104. ylabel=$y$,
  105. samples=11, % How many arrows?
  106. cycle list={ % Plot styles
  107. gray,
  108. quiver={
  109. u={1}, v={f(x)}, % End points of the arrows
  110. scale arrows=0.075,
  111. every arrow/.append style={
  112. -latex % Arrow tip
  113. },
  114. }\\
  115. red, samples=31, smooth, thick, no markers, domain=0:1.1\\ % The plot style for the function
  116. }
  117. ]
  118. \addplot3 (x,y,0);
  119. \addlegendentry{$f'(t,x)$}
  120. \addplot{(x-0.25)^2+0.15};
  121. \addlegendentry{$y(t)$}
  122. \end{axis}
  123. \end{tikzpicture}
  124. \caption{Veranschaulichung: Richtungsfeld für DGL der Form $y' = f(x)$}
  125. \end{figure}
  126. \begin{definition}[System erster Ordnung]
  127. Sei $D = I\times \Omega \subset \R\times \R^n,\ f\colon D\to \R^n$ stetig. Dann heißt
  128. \begin{equation}
  129. y'=f(t,y)\label{DGLOrd1}\tag{$\star$}
  130. \end{equation}
  131. ein System von $n$ Differentialgleichungen 1. Ordnung.
  132. \end{definition}
  133. Eine Lösung von \eqref{DGLOrd1} ist eine differenzierbare Funktion $y:I\to \R^n$ mit
  134. \begin{enumerate}[(a)]
  135. \item $\graph(y)\coloneqq \{(t,y(t))\in \R\times \R^n\mid t\in I\}\subset D$ und
  136. \item $y'(t) = f(t,y(t))\quad \forall t\in I$.
  137. \end{enumerate}
  138. \begin{bem}
  139. $y = \begin{pmatrix}
  140. y_1\\\vdots\\y_n
  141. \end{pmatrix}$ und $f=\begin{pmatrix}
  142. f_1\\\vdots\\f_n
  143. \end{pmatrix}$ Dann ist
  144. \begin{align*}
  145. \eqref{DGLOrd1} \Leftrightarrow y_1'&= f_1(t,y_1,\dots,y_n)\\
  146. \vdots&\\
  147. y_n'&= f_n(t,y_1,\dots,y_n)
  148. \end{align*}
  149. \end{bem}
  150. \begin{definition}[Anfangswertaufgabe/Anfangswertproblem]
  151. AWA zu \eqref{DGLOrd1} ist:
  152. \begin{align*}
  153. y' &= f(t,y),\quad t\in I \\
  154. y(t_0) &= y_0&&\text{Anfangsbedingung}
  155. \end{align*}
  156. Gesucht wird eine differenzierbare Funktion $y\colon I\to \R^n$ derart, dass
  157. \begin{enumerate}[(a)]
  158. \item $\graph(y) \subset D$
  159. \item $y'(t) = f(t,y(t)),\;t\in I$
  160. \item $y(t_0) = y_0$
  161. \end{enumerate}
  162. \end{definition}
  163. \begin{satz}[DGL $\leftrightarrow$ Integralgleichung]
  164. Sei $D\subset \R\times \R^n,\; f\colon D\to \R^n$ stetig, $(t_0,y_0)\in D$ und $y\colon I\to \R^n$ stetig mit $\graph(y)\subset D,\; t_0\in I$. Dann gilt
  165. \[
  166. y\text{ löst AWA }y'=f(t,y),\;y(t_0)=y_0\Leftrightarrow y(t) = y_0 + \int_{t_0}^t f(s,y(s))\d s \quad \forall t\in I
  167. \]
  168. \end{satz}
  169. \begin{proof}
  170. "$\Rightarrow$". Sei $y$ eine Lösung von AWA. Dann ist $y$ diffbar mit $y'(t) = f(t,y(t))$.
  171. \[\implies \int_{t_0}^t f(s,y(s)) \d s= \int_{t_0}^t y'(s)\d s \oldstackrel{\text{HDI}}{=} y(t) - y(t_0) = y(t)-y_0.\]
  172. "$\Leftarrow$". Sei die Integralgleichung erfüllt. Falls $t = t_0\implies y(t_0) = y_0 \implies$ (c). Aus dem HDI folgt komponentenweise $y'(t) = f(t,y(t)) \implies y$ löst AWA.
  173. \end{proof}
  174. \section{Anfangswertaufgaben: Existenz von Lösungen}
  175. \begin{satz}[Existenzsatz von Peano]\ \\
  176. Die Funktion $f(t,x)$ sei stetig auf dem $(n+1)$-dimensionalen Zylinder
  177. \[
  178. D = \{(t,x)\in \R\times \R^n\mid |t-t_0| \le \alpha,\; \norm{x-y_0}\le \beta\}
  179. \]
  180. Dann existiert eine Lösung $y(t)$ von AWA auf dem Intervall $I \coloneqq [t_0-T,t_0+T]$ mit \[T \coloneqq \min_{y(t)}\left\{\alpha,\frac{\beta}{M}\right\},\; M\coloneqq \max_{(t,x)\in D}\norm{f(t,x)}\]
  181. \end{satz}
  182. %\begin{figure}[h]
  183. % \begin{tikzpicture}
  184. % \begin{axis}%
  185. % [grid=none,
  186. % minor tick num=4,
  187. % grid style={line width=.1pt, draw=gray!10},
  188. % major grid style={line width=.2pt,draw=gray!50},
  189. % axis lines=middle,
  190. % %enlargelimits={abs=0.2},
  191. % ymax=5, ymin=-1.5,
  192. % xmin=2, xmax=7,
  193. % xtick={5}, ytick={2},
  194. % xticklabels={$t_0$},
  195. % yticklabels={$y_0$},
  196. % xlabel=$t$,
  197. % ylabel=$x$,
  198. % ]
  199. % \draw (4,1) rectangle (6,3);
  200. % \node at (5.8,1.3) {$D$};
  201. % \addplot[domain=1:10,samples=50,smooth,red] {2^(x-3)-2};
  202. % \addlegendentry{$y(t)$}
  203. % \end{axis}
  204. % \end{tikzpicture}
  205. %\end{figure}
  206. Reminder:
  207. \begin{enumerate}
  208. \item Gleichmäßige Stetigkeit: \[f\colon D\to \R,\; D\subset \R^n\] ist gleichmäßig stetig in $D$, falls $\forall \epsilon > 0,\;\exists \delta > 0$, sodass $\forall x,x_0\in D$ gilt \[\norm{x-x_0}< \delta \implies \norm{f(x)-f(x_0)}< \epsilon\]
  209. \item Gleichgradige Stetigkeit: Sei $\mathcal{F} \subset C[a,b]$. Dann ist $\mathcal{F}$ gleichgradig stetig, falls $\forall \epsilon> 0\;\exists \delta > 0$, sodass $\forall f\in \mathcal{F}$ gilt \[\forall t,t'\in [a,b],\; |t-t'| <\delta \implies \norm{f(t)-f(t')}<\epsilon\]
  210. \item Satz von Arzela-Ascoli:
  211. Sei $(f_n)_{n\in \N}$ eine Folge in $C[a,b]$, die gleichmäßig beschränkt und gleichgradig stetig ist, d.h.
  212. \[\sup_{n\in \N} \norm{f_n}_\infty < \infty\] und
  213. \[\forall\epsilon > 0,\;\exists \delta > 0,\forall n\in \N\colon\; \max_{\substack{t,t'\in [a,b]\\|t-t'|\le \delta}} \norm{f_n(t)-f_n(t')} < \epsilon.\]
  214. Dann existiert eine Teilfolge $(f_{n_k})_{k\in \N}$, welche gegen $f\in C[a,b]$ konvergiert, d.h. \[\norm{f_{n_k} - f}_\infty \to 0\]
  215. \item Dreiecksungleichung für Integrale. Sei $y\colon [a,b] \to\R^n$ stetig, $\norm{\cdot}$ irgendeine Norm auf $\R^n$. Dann
  216. \[\norm{\int_a^by(t)\d t} \le \int_a^b\norm{y(t)} \d t,\] hier:
  217. \[\int_a^by(t)\d t\coloneqq \begin{pmatrix}
  218. \int_a^by_1(t)\d t\\
  219. \vdots\\
  220. \int_a^by_n(t)\d t
  221. \end{pmatrix}\in \R^n\]
  222. \end{enumerate}
  223. \begin{proof} (Satz von Peano)\\
  224. Idee: Konstruiere eine Folge stetiger Funktionen (Eulersches Polygonzugverfahren). Aus dem Satz von Arzela-Ascoli folgt dann, dass es eine Teilfolge gibt, die gegen eine Lösung von AWA konvergiert.\\
  225. O.B.d.A. betrachte Halbintervall $I = [t_0,t_0+T]$. Sei $h>0$ Schrittweitenparameter $(h\to 0)$. Wähle eine äquidistante Unterteilung des Intervalls $I$.
  226. \[t_0 < t_1 < \dots < t_N = t_0 + T,\quad h = |t_k-t_{k-1}|\]
  227. Eulersches Polygonzugverfahren:\begin{itemize}
  228. \item Starte mit $y_0^h \coloneqq y_0$.
  229. \item Für $n\ge 1$, berechne $y_n^h=y_{n-1}^h + hf(t_{n-1},y_{n-1}^h)$.
  230. \end{itemize}
  231. Definiere die stückweise lineare Funktion $y^h(t)$
  232. \[y^h(t)\coloneqq y_{n-1}^h + (t-t_{n-1})f(t_{n-1},y_{n-1}^h),\quad t\in [t_{n-1},t_n],\quad \forall n\ge 1\]
  233. \begin{figure}[h]
  234. \centering
  235. \begin{tikzpicture}[declare function={f1(\x) = 0.5*(2)^(\x-1) + 10/(\x+2);
  236. f2(\x) = 0.5*(2)^(\x-1);
  237. f3(\x) = 0.5*(2)^(\x-1) - 10/(\x+2);
  238. f4(\x) = 0.5*(2)^(\x-1) - 20/(\x+2);}]
  239. \begin{axis}%
  240. [grid=none,
  241. %minor tick num=4,
  242. grid style={line width=.1pt, draw=gray!10},
  243. major grid style={line width=.2pt,draw=gray!50},
  244. axis lines=middle,
  245. %enlargelimits={abs=0.2},
  246. ymax=10, ymin=-1.5,
  247. xmin=-1, xmax=7,
  248. xtick={2,3,4,5},
  249. ytick=\empty,
  250. xticklabels={$t_0$, $t_1$, $t_2$, $t_3$},
  251. %yticklabels={$y_0$, $y_1^{h}$, $y_2^{h}$},
  252. xlabel=$t$,
  253. ylabel=$x$,
  254. ]
  255. \addplot[domain=0:10,samples=50,smooth,green] {f1(x)};
  256. \addlegendentry{$y(t,t_0,y_0)$};
  257. \addplot[domain=0:10,samples=50,smooth,blue] {f2(x)};
  258. \addlegendentry{$y(t, t_1, y_1^{h})$};
  259. \addplot[domain=0:10,samples=50,smooth,orange] {f3(x)};
  260. \addlegendentry{$y(t, t_2, y_2^{h})$};
  261. \addplot[domain=0:10,samples=50,smooth,pink] {f4(x)};
  262. \addlegendentry{$y(t, t_3, y_3^{h})$};
  263. \draw (2,{f1(2)}) node[circle,fill,inner sep=0.5pt] {}
  264. -- (3,{f2(3)}) node[circle,fill,inner sep=0.5pt] {}
  265. -- (4, {f3(4)}) node[circle,fill,inner sep=0.5pt] {}
  266. -- (5, {f4(5)}) node[circle,fill,inner sep=0.5pt] {};
  267. \draw[dashed,green] (2, {f1(2)}) -- (0, {f1(2)}) node[label=left:$y_0$](){};
  268. \draw[dashed,blue] (3, {f2(3)}) -- (0, {f2(3)}) node[label=left:$y_1$](){};
  269. \draw[dashed,orange] (4, {f3(4)}) -- (0, {f3(4)}) node[label=left:$y_2$](){};
  270. \draw[dashed,pink] (5, {f4(5)}) -- (0, {f4(5)}) node[label=left:$y_3$](){};
  271. \end{axis}
  272. \end{tikzpicture}
  273. \caption{Eulersches Polygonzugverfahren}
  274. \end{figure}
  275. \begin{enumerate}[1)]
  276. \item \textbf{z.Z.} dass dieses Verfahren durchführbar ist, d.h. $\graph(y^h)\subset D$. Sei $(t,y^h(t))\subset D$ für $t_0 \le t\le t_{k-1}$. Dann gilt
  277. \[
  278. \underbrace{(y^h(t))'}_{\coloneqq \dv{y^h(t)}{t}} \equiv f(t_{k-1},y_{k-1}^h),\quad t\in [t_{k-1},t_k]
  279. \]
  280. Nach Konstruktion gilt für $t\in [t_{k-1},t_k]$:
  281. \begin{align*}
  282. y^h(t)-y_0 &= y^h(t)-y_{k-1}^h + y_{k-1}^h - y_{k-2}^h+ \dots + y_1^h-y_0^h\\
  283. &= y^k(t)-y_{k-1}^h + \sum_{i = 1}^{k-1}(y_i^h-y_{i-1}^h)\\
  284. &= (t-t_{k-1})f(t_{k-1},y_{k-1}^h) + \sum_{i = 1}^{k-1}h\cdot f(t_{i-1},y_{i-1}^h)\\
  285. \implies \norm{y^h(t)-y_0}&\le (t-t_{k-1})\norm{f(t_{k-1},y_{k-1}^h)} + h \sum_{i = 1}^{k-1}\norm{f(t_{i-1},y_{i-1}^h)}\\
  286. &\le (t-t_{k-1})\cdot M + \underbrace{h(k-1)}_{=t_{k-1}-t_0} \cdot M\\
  287. &= (t-t_0)\cdot M\\
  288. &\le T\cdot M\\
  289. &= \min \left\{\alpha,\frac{\beta}{M}\right\}\cdot M\\
  290. &\le \beta
  291. \end{align*}
  292. Also ist $(t,y^h(t))\in D$ für $t_{k-1} \le t\le t_k$. Mit Annahme folgt $(t,y^h(t))\in D$ für $t_0\le t\le t_k \implies \graph(y^h)\subset D$.
  293. \item \begin{enumerate}[(a)]
  294. \item \textbf{z.Z.} dass die Funktionenfamilie $\{y^h\}_{h>0}$ gleichgradig stetig ist. Seien dafür $t,t'\in I, \ t'\le t$ beliebig mit $t\in [t_{k-1},t_k],\; t'\in [t_{j-1},t_j]$ für ein $t_j\le t_k$.
  295. \begin{figure}[h]
  296. \centering
  297. \begin{tikzpicture}[declare function={f1(\x) = 0.5*(2)^(\x-1) + 10/(\x+2);
  298. f2(\x) = 0.5*(2)^(\x-1);
  299. f3(\x) = 0.5*(2)^(\x-1) - 10/(\x+2);
  300. f4(\x) = 0.5*(2)^(\x-1) - 20/(\x+2);}]
  301. \begin{axis}%
  302. [grid=none,
  303. %minor tick num=4,
  304. grid style={line width=.1pt, draw=gray!10},
  305. major grid style={line width=.2pt,draw=gray!50},
  306. axis lines=middle,
  307. %enlargelimits={abs=0.2},
  308. ymax=10, ymin=-1.5,
  309. xmin=1, xmax=6,
  310. xtick={2,3,4,5},
  311. ytick={1},
  312. xticklabels={$t_0$, $t_1$, $t_2$, $t_3$},
  313. yticklabels={$y_0$},
  314. xlabel=$t$,
  315. ylabel=$x$,
  316. ]
  317. \addplot[domain=0:10,samples=50,smooth] {f2(x)};
  318. \draw (2,{f2(2)}) node[circle,fill,inner sep=0.5pt] {}
  319. (3,{f2(3)}) node[circle,fill,inner sep=0.5pt] {}
  320. (4,{f2(4)}) node[circle,fill,inner sep=0.5pt] {}
  321. (5,{f2(5)}) node[circle,fill,inner sep=0.5pt] {};
  322. \draw[dashed,red] (2.4, {f2(2.4)}) -- (2.4, 0)
  323. node [label={[label distance=-0.8mm]below:$t$}](){};
  324. \draw[dashed,red] (4.7, {f2(4.7)}) -- (4.7, 0)
  325. node [label={[label distance=-0.8mm]below:$t'$}](){};
  326. \draw[dashed,blue] (3.2, {f2(3.2)}) -- (3.2, 0)
  327. node [label={[label distance=-1mm]below:$t$}](){};
  328. \draw[dashed,blue] (3.8, {f2(3.8)}) -- (3.8, 0)
  329. node [label={[label distance=-1mm]below:$t'$}](){};
  330. \draw[dashed,black] (2, {f2(2)}) -- (0, {f2(2)})
  331. node [label={[label distance=-1mm]below:$t$}](){};
  332. %\draw[dashed,blue] (3, {f2(3)}) -- (0, {f2(3)}) node[label=left:$y_1$](){};
  333. %\draw[dashed,orange] (4, {f3(4)}) -- (0, {f3(4)}) node[label=left:$y_2$](){};
  334. %\draw[dashed,pink] (5, {f4(5)}) -- (0, {f4(5)}) node[label=left:$y_3$](){};
  335. \end{axis}
  336. \end{tikzpicture}
  337. \caption{Blau: erster Fall, Rot: zweiter Fall}
  338. \end{figure}
  339. \begin{itemize}
  340. \item $t,t' \in [t_{k-1},t_k]$:
  341. \begin{align*}
  342. y^h(t)-y^h(t')&= y_{k-1}^h + (t-t_{k-1})f(t_{k-1},y_{k-1}^h)\\
  343. &\quad - (y_{k-1}^h + (t'-t_{k-1})f(t_{k-1},y_{k-1}^h))\\
  344. &= (t-t') f(t_{k-1},y_{k-1}^h)\\
  345. \implies \norm{y^h(t)-y^h(t')} &\le |t-t'| \cdot M
  346. \end{align*}
  347. \item $t_j<t_k$: \begin{align*}
  348. y^h(t)-y^h(t') &= y^h(t) -y_{k-1}^h + y_{k-2}^h - \dots -y_{j-1}^h + y_{j-1}^h-y^h(t')\\
  349. &= y^h(t) - y_{k-1}^h + \sum_{i = j}^{k-1}(y_i^h-y_{i-1}^h) + y_{j-1}^h -y^h(t')\\
  350. &= (t-t_{k-1})f(t_{k-1},y_{k-1}^h) + \sum_{i = j}^{k-1}hf(t_{i-1},y_{i-1}^h)\\
  351. &\quad + (t_{j-1} -t')f(t_{j-1},y_{j-1}^h)\\
  352. &= (t-t_{k-1})f(t_{k-1},y_{k-1}^h) + \sum_{i = j+1}^{k-1}hf(t_{i-1},y_{i-1}^h)\\
  353. &\quad +hf(t_{j-1},y_{j-1}^h) + (t_{j-1}-t')f(t_{j-1},y_{j-1}^h)\\
  354. &= (t-t_{k-1})f(t_{k-1},y_{k-1}^h) + h\sum_{i = j+1}^{k-1}f(t_{i-1},y_{i-1}^h)\\
  355. &\quad + (\underbrace{h + t_{j-1}}_{t_j} - t')f(t_{j-1},y_{j-1}^h)
  356. \end{align*}
  357. Daraus folgt
  358. \[\norm{y^h(t)-y^h(t')}\le (t-t_{k-1})M + (t_{k-1}-t_j)M + (t_j-t')M\\
  359. = |t-t'|M\]
  360. \end{itemize}
  361. Wählt man für ein beliebiges $\epsilon > 0$ also $\delta = \frac{\epsilon}{M}$, so gilt $\forall h$
  362. \[|t-t'| < \delta \implies \norm{y^h(t)-y^h(t')} < \epsilon\]
  363. Daher ist $\{y^h\}_{h>0}$ gleichgradig stetig (sogar gleichgradig Lipschitz-stetig).
  364. \item \textbf{z.Z.} $y^h$ ist gleichmäßig beschränkt. Es gilt $\forall t\in [t_0,t_0+T]$
  365. \begin{align*}
  366. \norm{y^h(t)} &= \norm{y^h(t) - \smash[b]{\underbrace{y_0}_{\mathclap{y^h(t_0) = y_0}}} + y_0}
  367. \vphantom{\underbrace{y_0}_{\mathclap{y^h(t_0) = y_0}}}
  368. \\
  369. &\le \underbrace{\norm{y^h(t)-y_0}}_{\text{siehe 1)}} + \norm{y_0}\\
  370. &\le M\cdot T + \norm{y_0}
  371. \end{align*}
  372. Also ist $y^h$ gleichmäßig beschränkt.
  373. \end{enumerate}
  374. Nach dem Satz von Arzela-Ascoli existiert eine Nullfolge $(h_i)_{i\in \N}$ und eine stetige Funktion $y\colon I\to \R^n$ so dass
  375. \[\max_{t\in I} \norm{y^{h_i} - y(t)} \xrightarrow{i\to \infty} 0\]
  376. Offenbar ist $\graph(y)\subset D$.
  377. \item \textbf{z.Z.} $y(t)$ erfüllt die Differentialgleichung $y'(t) = f(t,y(t))$ oder äquivalent dazu: $y(t)$ erfüllt die Integralgleichung \[y(t) = y_0 + \int_{t_0}^{t} f(s,y(s))\d s\]
  378. \end{enumerate}
  379. \end{proof}
  380. \end{document}