[ELI5] What is a column space and a null space of a matrix A?

91 views

I’m just getting started with linear algebra and I’m not sure what column spaces or null spaces actually signify. What is the geometrical interpretation of both?

In: 1

3 Answers

Anonymous 0 Comments

Do you know how to multiply a matrix by a vector?

For an m x n matrix, its column space is *all* the linear combinations of the columns. What that means in terms of matrix-vector multiplication is that the column space is *all* the vectors A**v** as **v** runs over **R**^(n). In other words, if you use the matrix A to define a function from **R**^(n) to **R**^(m) that sends each **v** to A**v**, then the column space is the range of that function.

The null space is all the **v** where A**v** is the zero vector. It tells you how much A “collapses” **R**^(n) when you apply it to vectors there: A**u** = A**w** exactly when A(**u** – **w**) is the zero vector, meaning **u** – **w** is in the null space of A.

You are viewing 1 out of 3 answers, click here to view all answers.