I have to get a basis and dimension for the null space of a matrix A: $$ \begin{pmatrix} 1 & 2 & 0 & 0 & 2 & -3 \\ 2 & 2 & 2 & 2 & 2 & 2 \\ 1 & 2 & 1 & 4 & 3 & 6 \\ 3 & 4 & 3 & 6 & 5 & 8 \\ \end{pmatrix} $$
I attained the reduced row echelon form of the matrix: $$ \begin{pmatrix} 1 & 0 & 0 & -6 & -2 & -13 \\ 0 & 1 & 0 & 3 & 2 & 5 \\ 0 & 0 & 1 & 4 & 1 & 9 \\ 0 & 0 & 0 & 0 & 0 & 0 \\ \end{pmatrix} $$
I know that the dimension of the null space is equal to the number of free variables, which in the case is $3$ (the last three columns). So, the dimension of the null space of $A$ is $3$.
I'm aware of this method for finding the null space: Finding the basis of a null space
However, I'm finding it hard to wrap my head around as to how I can apply it here as the $RREF(A)$ is a little more complex.