Aufgabe1.tex 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. \add[3]{0}{1}
  41. \add[-2]{0}{2}
  42. \end{gmatrix}\\
  43. &\leadsto
  44. \begin{gmatrix}[p]
  45. 1 & -1 & 0 & 0\\
  46. 0 & 4 & 2 & 8\\
  47. 0 & 6 & 1 & 8
  48. \rowops
  49. \swap{1}{2}
  50. \end{gmatrix}\\
  51. &\leadsto
  52. \begin{gmatrix}[p]
  53. 1 & -1 & 0 & 0\\
  54. 0 & 6 & 1 & 8\\
  55. 0 & 4 & 2 & 8
  56. \rowops
  57. \mult{1}{\cdot \frac{1}{6}}
  58. \add[-4]{1}{2}
  59. \end{gmatrix}\\
  60. &\leadsto
  61. \begin{gmatrix}[p]
  62. 1 & -1 & 0 & 0\\
  63. 0 & 1 & \frac{1}{6} & \frac{4}{3}\\
  64. 0 & 0 & \frac{4}{3} & \frac{8}{3}
  65. \rowops
  66. \mult{2}{\cdot \frac{3}{4}}
  67. \end{gmatrix}\\
  68. &\leadsto
  69. \begin{gmatrix}[p]
  70. 1 & -1 & 0 & 0\\
  71. 0 & 1 & \frac{1}{6} & \frac{4}{3}\\
  72. 0 & 0 & 1 & 2
  73. \rowops
  74. \add[\cdot \frac{-1}{6}]{2}{1}
  75. \end{gmatrix}\\
  76. &\leadsto
  77. \begin{gmatrix}[p]
  78. 1 & -1 & 0 & 0\\
  79. 0 & 1 & 0 & 1\\
  80. 0 & 0 & 1 & 2
  81. \rowops
  82. \add[]{1}{0}
  83. \end{gmatrix}\\
  84. &\leadsto
  85. \begin{gmatrix}[p]
  86. 1 & 0 & 0 & 1\\
  87. 0 & 1 & 0 & 1\\
  88. 0 & 0 & 1 & 2
  89. \end{gmatrix}
  90. \end{align}