Finding null space of matrix.

Solution 1:

As mentioned in the comments, provided your arithmetic is accurate, this is the correct response. The idea behind the null space of a matrix is that it is precisely those vectors in the domain being sent to the $\mathbf{0}$ vector in the codomain. So, what you have (correctly) done, is determined the solution set of $A\mathbf{x}=\mathbf{0}$.

You did this by finding the null space of a reduced row echelon form of $A$, which has the same null space as $A$. That is, if $B$ is the reduced row echelon form for $A$ that you found, $A\mathbf{x}=\mathbf{0}$ if and only if $B\mathbf{x}=\mathbf{0}$. So, $N(B)=N(A)$.