Aufgabe1.tex 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. \begin{align*}
  12. A &=
  13. \begin{gmatrix}[p]
  14. 1 & 2 & 3\\
  15. 2 & 8 & 14\\
  16. 3 & 14 & 34
  17. \rowops
  18. \add[\cdot (-2)]{0}{1}
  19. \add[\cdot (-3)]{0}{2}
  20. \end{gmatrix}\\
  21. \leadsto
  22. L^{(1)} &=
  23. \begin{pmatrix}
  24. 1 & 0 & 0\\
  25. -2 & 1 & 0\\
  26. -3 & 0 & 1
  27. \end{pmatrix},&
  28. A^{(1)} &=
  29. \begin{gmatrix}[p]
  30. 1 & 2 & 3\\
  31. 0 & 4 & 8\\
  32. 0 & 8 & 25
  33. \rowops
  34. \add[\cdot (-2)]{1}{2}
  35. \end{gmatrix}\\
  36. \leadsto
  37. L^{(2)} &=
  38. \begin{pmatrix}
  39. 1 & 0 & 0\\
  40. 0 & 1 & 0\\
  41. 0 & -2 & 1
  42. \end{pmatrix},&
  43. A^{(2)} &=
  44. \begin{gmatrix}[p]
  45. 1 & 2 & 3\\
  46. 0 & 4 & 8\\
  47. 0 & 0 & 9
  48. \end{gmatrix} =: R\\
  49. L &= (L^{(2)} \cdot L^{(1)})^{-1}\footnotemark
  50. &L &= \begin{pmatrix}
  51. 1 & 0 & 0\\
  52. 2 & 1 & 0\\
  53. 3 & 2 & 1
  54. \end{pmatrix}
  55. \end{align*}
  56. \footnotetext{Da dies beides Frobeniusmatrizen sind, kann einfach die negierten Elemente unter der Diagonalmatrix auf die Einheitsmatrix addieren um das Ergebnis zu erhalten}
  57. Nun gilt:
  58. \begin{align}
  59. A &= LR = L (DL^T)\\
  60. \Rightarrow A &= \underbrace{(L D^\frac{1}{2})}_{=: \overline{L}} (D^\frac{1}{2} L^T)\\
  61. \begin{pmatrix}d_1 &0&0\\0&d_2&0\\0&0&d_3\end{pmatrix} \cdot
  62. \begin{pmatrix}
  63. 1 & 2 & 3\\
  64. 0 & 1 & 2\\
  65. 0 & 0 & 1
  66. \end{pmatrix}
  67. &= \begin{pmatrix}
  68. 1 & 2 & 3\\
  69. 0 & 4 & 8\\
  70. 0 & 0 & 9
  71. \end{pmatrix}\\
  72. \Rightarrow D &= \begin{pmatrix}1 &0&0\\0&4&0\\0&0&9\end{pmatrix}\\
  73. \Rightarrow D^\frac{1}{2} &= \begin{pmatrix}1 &0&0\\0&2&0\\0&0&3\end{pmatrix}\\
  74. \overline{L} &= \begin{pmatrix}
  75. 1 & 0 & 0\\
  76. 2 & 1 & 0\\
  77. 3 & 2 & 1
  78. \end{pmatrix} \cdot \begin{pmatrix}1 &0&0\\0&2&0\\0&0&3\end{pmatrix}\\
  79. &= \begin{pmatrix}
  80. 1 & 0 & 0\\
  81. 2 & 2 & 0\\
  82. 3 & 4 & 3
  83. \end{pmatrix}
  84. \end{align}