Aufgabe1.tex 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. \section*{Aufgabe 1}
  2. \textbf{Gegeben:}
  3. \[
  4. A = \begin{pmatrix}
  5. 1 & 2 & 3\\
  6. 2 & 8 & 14\\
  7. 3 & 14 & 34
  8. \end{pmatrix}\]
  9. \textbf{Aufgabe:} Durch Gauß-Elimination die Cholesky-Zerlegung $A = \overline{L} \overline{L}^T$
  10. berechnen
  11. \textbf{Lösung mit Gauß-Elimination:}
  12. \begin{align*}
  13. A &=
  14. \begin{gmatrix}[p]
  15. 1 & 2 & 3\\
  16. 2 & 8 & 14\\
  17. 3 & 14 & 34
  18. \rowops
  19. \add[\cdot (-2)]{0}{1}
  20. \add[\cdot (-3)]{0}{2}
  21. \end{gmatrix}\\
  22. \leadsto
  23. L^{(1)} &=
  24. \begin{pmatrix}
  25. 1 & 0 & 0\\
  26. -2 & 1 & 0\\
  27. -3 & 0 & 1
  28. \end{pmatrix},&
  29. A^{(1)} &=
  30. \begin{gmatrix}[p]
  31. 1 & 2 & 3\\
  32. 0 & 4 & 8\\
  33. 0 & 8 & 25
  34. \rowops
  35. \add[\cdot (-2)]{1}{2}
  36. \end{gmatrix}\\
  37. \leadsto
  38. L^{(2)} &=
  39. \begin{pmatrix}
  40. 1 & 0 & 0\\
  41. 0 & 1 & 0\\
  42. 0 & -2 & 1
  43. \end{pmatrix},&
  44. A^{(2)} &=
  45. \begin{gmatrix}[p]
  46. 1 & 2 & 3\\
  47. 0 & 4 & 8\\
  48. 0 & 0 & 9
  49. \rowops
  50. \add[\cdot (-2)]{1}{2}
  51. \end{gmatrix}\\
  52. \end{align*}
  53. TODO: Und wie gehts weiter?
  54. \textbf{Lösung ohne Gauß-Elimination:}
  55. \[
  56. A =
  57. \underbrace{
  58. \begin{pmatrix}
  59. 1 & 0 & 0\\
  60. 2 & 2 & 0\\
  61. 3 & 4 & 3
  62. \end{pmatrix}}_{=: L} \cdot \underbrace{\begin{pmatrix}
  63. 1 & 2 & 3\\
  64. 0 & 2 & 4\\
  65. 0 & 0 & 3
  66. \end{pmatrix}}_{=: L^T}
  67. \]