Aktuelles PDF gibt's auch hier: https://flavigny.de/lecture/pdf/analysis2 zum bequemeren Lesen.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

404 satır
21KB

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