Aufgabe3.tex 1.5 KB

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