Aufgabe3.tex 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. Und jetzt die Berechnung %TODO: Was ist hiermit gemeint?
  10. \[f'(x, y) \cdot (x_0, y_0) = f(x,y)\] %TODO: Was ist hiermit gemeint?
  11. LR-Zerlegung für $f'(x, y)$ kann durch scharfes hinsehen durchgeführt
  12. werden, da es in $L$ nur eine unbekannte (links unten) gibt. Es gilt
  13. also ausführlich:
  14. \begin{align}
  15. \begin{pmatrix}
  16. 3 & \cos y\\
  17. 3 x^2 & e^y
  18. \end{pmatrix}
  19. &=
  20. \overbrace{\begin{pmatrix}
  21. 1 & 0\\
  22. l_{12} & 1
  23. \end{pmatrix}}^L \cdot
  24. \overbrace{\begin{pmatrix}
  25. r_{11} & r_{12}\\
  26. 0 & r_{22}
  27. \end{pmatrix}}^R\\
  28. \Rightarrow r_{11} &= 3\\
  29. \Rightarrow r_{12} &= \cos y\\
  30. \Rightarrow \begin{pmatrix}
  31. 3 & \cos y\\
  32. 3 x^2 & e^y
  33. \end{pmatrix}
  34. &=
  35. \begin{pmatrix}
  36. 1 & 0\\
  37. l_{12} & 1
  38. \end{pmatrix} \cdot
  39. \begin{pmatrix}
  40. 3 & \cos y\\
  41. 0 & r_{22}
  42. \end{pmatrix}\\
  43. \Rightarrow 3x^2 &\stackrel{!}{=} l_{12} \cdot 3 + 1 \cdot 0\\
  44. \Leftrightarrow l_{12} &= x^2\\
  45. \Rightarrow e^y &\stackrel{!}{=} x^2 \cdot \cos y + 1 \cdot r_{22}\\
  46. \Leftrightarrow r_{22} &= -x^2 \cdot \cos y + e^y\\
  47. \Rightarrow \begin{pmatrix}
  48. 3 & \cos y\\
  49. 3 x^2 & e^y
  50. \end{pmatrix}
  51. &=
  52. \begin{pmatrix}
  53. 1 & 0\\
  54. x^2 & 1
  55. \end{pmatrix} \cdot
  56. \begin{pmatrix}
  57. 3 & \cos y\\
  58. 0 & -x^2 \cdot \cos y + e^y
  59. \end{pmatrix}\\
  60. P &= I_2\\
  61. \end{align}
  62. Es folgt:
  63. \begin{align}
  64. -f ( \nicefrac{-1}{3}, 0) &= \begin{pmatrix} -2\\ -\frac{26}{27}\end{pmatrix}\\
  65. c &= \begin{pmatrix} 2\\ \frac{82}{27} \end{pmatrix}\\ %TODO: Was ist c?
  66. (x_1, y_1) &= \begin{pmatrix} \frac{5}{3}\\ \frac{82}{27}\end{pmatrix}
  67. \end{align}