The question;
$U = \{x |Ax = 0\}$ If $ A = \begin{bmatrix}1 & 2 & 1 & 0 & -2\\ 2 & 1 & 2 & 1 & 2\\1 & 1 & 0 & -1 & -2\\ 0 & 0 & 2 & 0 & 4\end{bmatrix}$
Find a basis for $U$.
To make it linearly independent, I reduce the rows of $A$;
$\begin{bmatrix}1 & 0 & 0 & 0 & 0\\0 & 1 & 0 & 0 & -2\\0 & 0 & 1 & 0 & 2\\0 & 0 & 0 & 1 & 0\end{bmatrix}\begin{bmatrix}x_1 & x_2 & x_3 & x_4\end{bmatrix} = 0$
So I figure I just have to list the rows out as vectors;
Basis vectors = $\begin{pmatrix}1\\0\\0\\0\\0\end{pmatrix} , \begin{pmatrix}0\\1\\0\\0\\-2\end{pmatrix} , \begin{pmatrix}0\\0\\1\\0\\2\end{pmatrix} , \begin{pmatrix}0\\0\\0\\1\\0\end{pmatrix}$
(can't figure out how to surround it all with curly brackets in MathJax).
Am I doing this properly? It feels too simple...