How do you find the column space for matrix A?
Break down A into L&U, the column space is then the first r columns of L, where r is the number of non-zero rows in U (and is also the rank of the matrix)
How do you find the row space of matrix A?
Break A down into L&U, and take all non-zero rows of U
How do you find the null space of A?
The null space of A is every independent vector that solves Ax = 0, or LUx = 0
Since L is always invertible, this is the same as the solutions of Ux=0
How do you find the left null space of A?
The left null space of A is the solution to ytA=0
This is the same as Lty = 0