Aufgabe3.tex 3.3 KB

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