Aufgabe1.tex 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. \section*{Aufgabe 1}
  2. \paragraph{Gegeben:}
  3. \[A = \begin{pmatrix}
  4. 2 & 3 & -1\\
  5. -6 & -5 & 0\\
  6. 2 & -5 & 6
  7. \end{pmatrix},\;\;\; b = \begin{pmatrix}20\\-41\\-15\end{pmatrix}\]
  8. \paragraph{LR-Zerlegung:}
  9. \begin{align}
  10. &&A^{(0)} &= \begin{gmatrix}[p]
  11. 2 & 3 & -1\\
  12. -6 & -5 & 0\\
  13. 2 & -5 & 6
  14. \rowops
  15. \swap{0}{1}
  16. \end{gmatrix}\\
  17. P^{(1)} &= \begin{pmatrix}
  18. 0 & 1 & 0\\
  19. 1 & 0 & 0\\
  20. 0 & 0 & 1
  21. \end{pmatrix}
  22. &A^{(1)} &=
  23. \begin{gmatrix}[p]
  24. -6 & -5 & 0\\
  25. 2 & 3 & -1\\
  26. 2 & -5 & 6
  27. \rowops
  28. \add[\cdot \frac{1}{3}]{0}{1}
  29. \add[\cdot \frac{1}{3}]{0}{2}
  30. \end{gmatrix}\\
  31. L^{(2)} &=\begin{pmatrix}
  32. 1 & 0 & 0\\
  33. \nicefrac{1}{3} & 1 & 0\\
  34. \nicefrac{1}{3} & 0 & 1
  35. \end{pmatrix},
  36. & A^{(2)} &= \begin{gmatrix}[p]
  37. -6 & -5 & 0\\
  38. 0 & \frac{4}{3} & -1\\
  39. 0 & -\frac{20}{3} & 6
  40. \rowops
  41. \swap{1}{2}
  42. \end{gmatrix}\\
  43. P^{(3)} &= \begin{pmatrix}
  44. 1 & 0 & 0\\
  45. 0 & 0 & 1\\
  46. 0 & 1 & 0
  47. \end{pmatrix},
  48. & A^{(3)} &= \begin{gmatrix}[p]
  49. -6 & -5 & 0\\
  50. 0 & -\frac{20}{3} & 6\\
  51. 0 & \frac{4}{3} & -1
  52. \rowops
  53. \add[\cdot \frac{1}{5}]{1}{2}
  54. \end{gmatrix}\\
  55. L^{(4)} &= \begin{pmatrix}
  56. 1 & 0 & 0\\
  57. 0 & 1 & 0\\
  58. 0 & \nicefrac{1}{5} & 1
  59. \end{pmatrix},
  60. & A^{(4)} &= \begin{gmatrix}[p]
  61. -6 & -5 & 0\\
  62. 0 & -\frac{20}{3} & 6\\
  63. 0 & 0 & \nicefrac{1}{5}
  64. \end{gmatrix} =:R
  65. \end{align}
  66. Es gilt nun:
  67. \begin{align}
  68. P :&= P^{(3)} \cdot P^{(1)}\\
  69. &= \begin{pmatrix}
  70. 1 & 0 & 0\\
  71. 0 & 0 & 1\\
  72. 0 & 1 & 0
  73. \end{pmatrix} \cdot \begin{pmatrix}
  74. 0 & 1 & 0\\
  75. 1 & 0 & 0\\
  76. 0 & 0 & 1
  77. \end{pmatrix} \\
  78. &=
  79. \begin{pmatrix}
  80. 0 & 1 & 0\\
  81. 0 & 0 & 1\\
  82. 1 & 0 & 0
  83. \end{pmatrix}\\
  84. L^{(4)} \cdot P^{(3)} \cdot L^{(2)} \cdot P^{(1)} \cdot A &= R\\
  85. L^{-1} &= L^{(4)} \cdot \hat{L_1}\\
  86. \hat{L_1} &= P^{(3)} \cdot L^{(2)} \cdot (P^{(3)})^{-1}\\
  87. &= P^{(3)} \cdot L^{(2)} \cdot P^{(3)}\\
  88. &= \begin{pmatrix}
  89. 1 & 0 & 0\\
  90. \nicefrac{1}{3} & 1 & 0\\
  91. \nicefrac{1}{3} & 0 & 1
  92. \end{pmatrix}\\
  93. L &= (L^{(4)} \cdot \hat{L_1})^{-1}\\
  94. &= \begin{pmatrix}
  95. 1 & 0 & 0\\
  96. -\frac{1}{3} & 1 & 0\\
  97. -\frac{1}{3} & -\frac{1}{5} & 1
  98. \end{pmatrix}
  99. \end{align}
  100. Überprüfung mit \href{http://www.wolframalpha.com/input/?i=%7B%7B1%2C+0%2C+0%7D%2C+%7B-1%2F3%2C+1%2C+0%7D%2C+%7B-1%2F3%2C+-1%2F5%2C+1%7D%7D*%7B%7B-6%2C-5%2C0%7D%2C%7B0%2C-20%2F3%2C6%7D%2C%7B0%2C0%2C1%2F5%7D%7D}{Wolfram|Alpha}.