Given that $A = LU$, where $L =$ \begin{bmatrix}1&0&0\\2&1&0\\3&0&1\end{bmatrix} and $U =$ \begin{bmatrix}1&1&0&1\\0&0&1&1\\0&0&0&0\end{bmatrix}
I need to find the following without extensive calculation to show insight into the topic:
• the rowspace of $A$.
• the columnspace of $A$.
• the nullspace of $A$.
• the nullspace of $A^T$.
I know that the rowspace is just the non-zero rows from U. The columnspace is the columns of $L$ that correspond to the pivot columns of $U$. The nullspace is the nullspace of $U$. But I can't find an efficient way to calculate a basis for $\text{null}(A^T)$. I know that $\text{null}(A^T)$ is the orthogonal projection of $\text{col}(A)$, but I still can't manage to find a short, easy solution based on some properties without calculating $A^T$ and doing it that way.
If anyone knows some properties to solve this, please let me know :)