I have row reduced a matrix to the following form: $$ A = \begin{bmatrix} 3 & -3 & 1 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix} $$
How do I compute the null space of this matrix?
Thank you.
Edit:
Specifically, how do you obtain the vectors.
If I let vector $v = \begin{bmatrix} x & y & z \end{bmatrix}^T$ be in the null space of $A$, I must solve the following equation: $$ 3x-3y+z=0$$
To find possible $v$, I thought to set $x,y$ and $z$ to $0$ at separate times. However, doing so gives me three vectors for the null space. However, I believe by the Rank-Nullity theorem the dimension of the null space must be 2.
I get the same vectors by this method as some that have been suggested, but I do not know which of the three to pick. Mathematica consistently chooses the same two vectors ($\begin{bmatrix} -1 & 0 & 3 \end{bmatrix}^T$ and $\begin{bmatrix} 1 & 1 & 0 \end{bmatrix}^T$).