Aufgabe1.tex 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. \section*{Aufgabe 1}
  2. \subsection*{Teilaufgabe a}
  3. \textbf{Gegeben:}
  4. \[A =
  5. \begin{pmatrix}
  6. 6 & -6 & 0 \\
  7. -3 & 7 & 2 \\
  8. 2 & 4 & 1
  9. \end{pmatrix}, \;\;\;
  10. b =\begin{pmatrix}
  11. 0 \\
  12. 8 \\
  13. 8
  14. \end{pmatrix}\]
  15. \textbf{Aufgabe:} $Ax = b$ mit Gaußelimination und Spaltenpivotwahl lösen
  16. \textbf{Lösung:}
  17. \begin{align}
  18. \begin{gmatrix}[p]
  19. 6 & -6 & 0 & 0\\
  20. -3 & 7 & 2 & 8\\
  21. 2 & 4 & 1 & 8
  22. \rowops
  23. \mult{0}{\cdot \frac{1}{6}}
  24. \end{gmatrix}
  25. &\leadsto
  26. \begin{gmatrix}[p]
  27. 1 & -1 & 0 & 0\\
  28. -3 & 7 & 2 & 8\\
  29. 2 & 4 & 1 & 8
  30. \rowops
  31. \add[3]{0}{1}
  32. \add[-2]{0}{2}
  33. \end{gmatrix}\\
  34. &\leadsto
  35. \begin{gmatrix}[p]
  36. 1 & -1 & 0 & 0\\
  37. 0 & 4 & 2 & 8\\
  38. 0 & 6 & 1 & 8
  39. \rowops
  40. \swap{1}{2}
  41. \end{gmatrix}\\
  42. &\leadsto
  43. \begin{gmatrix}[p]
  44. 1 & -1 & 0 & 0\\
  45. 0 & 6 & 1 & 8\\
  46. 0 & 4 & 2 & 8
  47. \rowops
  48. \mult{1}{\cdot \frac{1}{6}}
  49. \add[-4]{1}{2}
  50. \end{gmatrix}\\
  51. &\leadsto
  52. \begin{gmatrix}[p]
  53. 1 & -1 & 0 & 0\\
  54. 0 & 1 & \frac{1}{6} & \frac{4}{3}\\
  55. 0 & 0 & \frac{4}{3} & \frac{8}{3}
  56. \rowops
  57. \mult{2}{\cdot \frac{3}{4}}
  58. \end{gmatrix}\\
  59. &\leadsto
  60. \begin{gmatrix}[p]
  61. 1 & -1 & 0 & 0\\
  62. 0 & 1 & \frac{1}{6} & \frac{4}{3}\\
  63. 0 & 0 & 1 & 2
  64. \rowops
  65. \add[\cdot \frac{-1}{6}]{2}{1}
  66. \end{gmatrix}\\
  67. &\leadsto
  68. \begin{gmatrix}[p]
  69. 1 & -1 & 0 & 0\\
  70. 0 & 1 & 0 & 1\\
  71. 0 & 0 & 1 & 2
  72. \rowops
  73. \add[]{1}{0}
  74. \end{gmatrix}\\
  75. &\leadsto
  76. \begin{gmatrix}[p]
  77. 1 & 0 & 0 & 1\\
  78. 0 & 1 & 0 & 1\\
  79. 0 & 0 & 1 & 2
  80. \end{gmatrix}
  81. \end{align}
  82. $\Rightarrow x = \begin{pmatrix}1 & 1 & 2\end{pmatrix}^T$ löst das LGS.