Aufgabe3.tex 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. \section*{Aufgabe 3}
  2. Die Jacobi-Matrix von $f$ lautet:
  3. \[f' (x,y) = \begin{pmatrix}
  4. 3 & \cos y\\
  5. 3 x^2 & e^y
  6. \end{pmatrix}\]
  7. Hierfür wurde in in der ersten Spalte nach $x$ abgeleitet und in der
  8. zweiten Spalte nach $y$.
  9. \subsection*{Lösungsvorschlag 1 (Numerische Lösung)}
  10. Eine Iteration des Newton-Verfahren ist durch
  11. \begin{align}
  12. x_{k+1}&=x_{k}-f'(x_k)^{-1}\cdot f(x_k)
  13. \end{align}
  14. gegeben (vgl. Skript, S. 35).
  15. Zur praktischen Durchführung lösen wir
  16. \begin{align}
  17. f'(x_0, y_0)\Delta x &= -f(x_0,y_0)\\
  18. L \cdot \underbrace{R \cdot \Delta x}_{=: c} &= -f(x_0, y_0)
  19. \end{align}
  20. mit Hilfe der LR Zerlegung nach $\Delta x$ auf:
  21. \begin{align}
  22. %
  23. f'(x_0,y_0) &= L \cdot R \\
  24. \Leftrightarrow f'(-\nicefrac{1}{3}, 0) &= L \cdot R \\
  25. \Leftrightarrow \begin{pmatrix}
  26. 3 & 1\\
  27. \frac{1}{3} & 1
  28. \end{pmatrix}
  29. &=
  30. \overbrace{\begin{pmatrix}
  31. 1 & 0\\
  32. \frac{1}{9} & 1
  33. \end{pmatrix}}^{=: L} \cdot
  34. \overbrace{\begin{pmatrix}
  35. 3 & 1\\
  36. 0 & \frac{8}{9}
  37. \end{pmatrix}}^{=: R}\\
  38. %
  39. L \cdot c &= -f(x_0,y_0) \\
  40. \Leftrightarrow
  41. \begin{pmatrix}
  42. 1 & 0\\
  43. \frac{1}{9} & 1
  44. \end{pmatrix}
  45. \cdot c
  46. &= -
  47. \begin{pmatrix}
  48. 2\\
  49. \frac{26}{27}
  50. \end{pmatrix}\\
  51. \Rightarrow
  52. c &= \begin{pmatrix}
  53. -2\\
  54. -\frac{26}{27}
  55. \end{pmatrix}\footnotemark\\
  56. %
  57. R\cdot \Delta x &= c\\
  58. \Leftrightarrow
  59. \begin{pmatrix}
  60. 3 & 1\\
  61. 0 & \frac{8}{9}
  62. \end{pmatrix}
  63. \cdot \Delta x &=
  64. \begin{pmatrix}
  65. -2\\
  66. -\frac{26}{27}
  67. \end{pmatrix}\\
  68. \Rightarrow \Delta x &= \frac{1}{36}
  69. \begin{pmatrix}
  70. -11\\
  71. -39
  72. \end{pmatrix}
  73. \end{align}
  74. \footnotetext{Dieser Schritt wird durch Vorwärtssubsitution berechnet.}
  75. Anschließend berechnen wir
  76. \begin{align}
  77. \begin{pmatrix}
  78. x_1\\
  79. y_1
  80. \end{pmatrix} &=
  81. \begin{pmatrix}
  82. x_0\\
  83. y_0
  84. \end{pmatrix}+\Delta x \\
  85. \Leftrightarrow\begin{pmatrix}
  86. x_1\\
  87. y_1
  88. \end{pmatrix} &=
  89. \begin{pmatrix}
  90. -\frac{1}{3}\\
  91. 0
  92. \end{pmatrix} +
  93. \frac{1}{36}
  94. \begin{pmatrix}
  95. -11\\
  96. -39
  97. \end{pmatrix} \\
  98. \Leftrightarrow\begin{pmatrix}
  99. x_1\\
  100. y_1
  101. \end{pmatrix} &=
  102. \begin{pmatrix}
  103. -\nicefrac{23}{36}\\
  104. -\nicefrac{39}{36}
  105. \end{pmatrix}
  106. \end{align}
  107. \subsection*{Lösungsvorschlag 2 (Analytische Lösung)}
  108. Und jetzt die Berechnung %TODO: Was ist hiermit gemeint?
  109. \[f'(x, y) \cdot (x_0, y_0) = f(x,y)\] %TODO: Was ist hiermit gemeint?
  110. LR-Zerlegung für $f'(x, y)$ kann durch scharfes hinsehen durchgeführt
  111. werden, da es in $L$ nur eine unbekannte (links unten) gibt. Es gilt
  112. also ausführlich:
  113. \begin{align}
  114. \begin{pmatrix}
  115. 3 & \cos y\\
  116. 3 x^2 & e^y
  117. \end{pmatrix}
  118. &=
  119. \overbrace{\begin{pmatrix}
  120. 1 & 0\\
  121. l_{12} & 1
  122. \end{pmatrix}}^L \cdot
  123. \overbrace{\begin{pmatrix}
  124. r_{11} & r_{12}\\
  125. 0 & r_{22}
  126. \end{pmatrix}}^R\\
  127. \Rightarrow r_{11} &= 3\\
  128. \Rightarrow r_{12} &= \cos y\\
  129. \Rightarrow \begin{pmatrix}
  130. 3 & \cos y\\
  131. 3 x^2 & e^y
  132. \end{pmatrix}
  133. &=
  134. \begin{pmatrix}
  135. 1 & 0\\
  136. l_{12} & 1
  137. \end{pmatrix} \cdot
  138. \begin{pmatrix}
  139. 3 & \cos y\\
  140. 0 & r_{22}
  141. \end{pmatrix}\\
  142. \Rightarrow 3x^2 &\stackrel{!}{=} l_{12} \cdot 3 + 1 \cdot 0\\
  143. \Leftrightarrow l_{12} &= x^2\\
  144. \Rightarrow e^y &\stackrel{!}{=} x^2 \cdot \cos y + 1 \cdot r_{22}\\
  145. \Leftrightarrow r_{22} &= -x^2 \cdot \cos y + e^y\\
  146. \Rightarrow \begin{pmatrix}
  147. 3 & \cos y\\
  148. 3 x^2 & e^y
  149. \end{pmatrix}
  150. &=
  151. \begin{pmatrix}
  152. 1 & 0\\
  153. x^2 & 1
  154. \end{pmatrix} \cdot
  155. \begin{pmatrix}
  156. 3 & \cos y\\
  157. 0 & -x^2 \cdot \cos y + e^y
  158. \end{pmatrix}\\
  159. P &= I_2
  160. \end{align}
  161. TODO: Eigentlich sollten sich ab hier die Lösungsvorschläge gleichen\dots
  162. Es folgt:
  163. \begin{align}
  164. -f ( \nicefrac{-1}{3}, 0) &= \begin{pmatrix} -2\\ -\frac{26}{27}\end{pmatrix}\\
  165. c &= \begin{pmatrix} 2\\ \nicefrac{82}{27} \end{pmatrix}\\ %TODO: Was ist c?
  166. (x_1, y_1) &= \begin{pmatrix} \nicefrac{5}{3}\\ \nicefrac{82}{27}\end{pmatrix}
  167. \end{align}