Hallo Marie,
Die Koeffizientenmatrix ist
⎡ 1  -1  0 ⎤
⎢ 1   1  2 ⎥
⎣ 2  -2  0 ⎦
LGS:
⎡ 1  -1  0 | 0⎤
⎢ 1   1  2 | 0⎥
⎣ 2  -2  0 | 0⎦
Gauß Algorithmus:
⎡ 1  -1  0 | 0 ⎤
⎢ 0   2  2 | 0 ⎥  Z2 - Z1 
⎣ 0   0  0 | 0 ⎦  Z3 - 2*Z1
⎡ 1  -1  0 | 0 ⎤
⎢ 0   1  1 | 0 ⎥ Z2 : 2
⎣ 0   0  0 | 0 ⎦
Z3 →  x3 kann man beliebig wählen, nennen wir es c
Z2 →  x2 = - x3 = -c
Z1 →  x1 = x2 = -x3 = -c
Lösungsmenge = { (-c , -c, c) | c∈ℝ }
Gruß Wolfgang