I wanted to ask whether I solved the following system of equations correctly:
Solve the following (augmented matrix, right vector is the solution vector) $$ \left[\begin{array}{rrrr|r} -4 & -8 & 8 & -8 & 12 \\ 0 & -6 & 0 & -12 & 6\\ -6 & -6 & 12 & 0 & 12 \end{array}\right] $$
I solved it this far:
$$ \left[\begin{array}{rrrr|r} 1 & 1 & -2 & 0 & -2 \\ 0 & 1 & 0 & 2 & -1\\ 0 & 0 & 0 & 0 & 0 \end{array}\right] $$
Is it correct and if yes how would I express the set of solutions?
No, it is not correct. If you follow the standard procedure, what you should get is$$\left[\begin{array}{rrrr|r}1 & 0 & -2 & 0 & -2 \\ 0 & 1 & 0 & 2 & -1\\ 0 & 0 & 0 & 1 & -\frac12 \end{array}\right].$$Therefore, the set of solutions is$$\left\{\left(x,0,1+\frac x2,-\frac12\right)\,\middle|\,x\in\Bbb R\right\}.$$