Okay ich hab soweit die Aufgabe mal gelöst. Könnte mir bitte jemand sagen ob es soweit richtig ist?
Gauss-Algorithmus (beachte modulo 7):
\( \begin{pmatrix} 1 & 2 & 5 & 2 \\ 3 & 2 & 0 & 1 \\ 1 & 1 & 3 & 6 \end{pmatrix} \) → \( \begin{pmatrix} 1 & 2 & 5 & 2 \\ 0 & 3 & -1 & 2 \\ 0 & 6 & 5 & 4 \end{pmatrix} \) → \( \begin{pmatrix} 1 & 2 & 5 & 2 \\ 0 & 3 & -1 & 2 \\ 0 & 0 & 0 & 0 \end{pmatrix} \)
dim(ker(L)) = 2 (Anzahl der freien Variablen)
dim(Im(L)) = 2 (Anzahl der Pivotelemente)
Eine Basis des Bildes von L ist: \( \begin{pmatrix} 1\\3\\1 \end{pmatrix} \) , \( \begin{pmatrix} 2\\2\\1 \end{pmatrix} \)
Nun berechnen wir eine Basis des Kernes von L.
2.Zeile: 3x2 -1x3 + 2x4 = 0 ⇔ x2 = \( \frac{1}{3} \)x3 - \( \frac{2}{3} \)x4
1. Zeile: x1 + 2x2 + 5x3 + 2x4 = 0 ⇔ x1 = -\( \frac{17}{3} \)x3 - \( \frac{2}{3} \)x4
Somit ist eine Basis des Kernes von L: {(x3 \( \begin{pmatrix} -\frac{17}{3}\\\frac{1}{3}\\1\\0 \end{pmatrix} \) + x4 ·\( \begin{pmatrix} -\frac{2}{3}\\-\frac{2}{3}\\0\\1 \end{pmatrix} \) Ι x3 , x4 ∈ ℝ}
Das ist meine Lösung. Ist diese soweit korrekt?