Column Space
Learn about a matrix’s column space and its relationship with the solution of a linear system.
Definition
The column space of a matrix, , often denoted by , is a vector space spanned by the column vectors of .
The column-space of an matrix is a subspace of . The dimensions of the column space are the number of linearly independent columns, that is, the rank of the matrix .
Examples
-
The column space of is .
-
The column space of is a one-dimensional subspace of . This is because there’s a single linearly independent vector as . Any of these columns can be a basis for the subspace.
-
The column space of is a zero-dimensional subspace of .
-
The column space of an invertible matrix is . This is because all the columns of such a matrix are linearly independent. That is, .
The columns of every invertible matrix form a basis of .
Basis of column space
A basis of the column space of a matrix, , is a set of linearly independent columns of . One algorithm for computing the basis is as follows:
-
Take the transpose of the matrix to convert the columns into rows.
-
Compute the (reduced row echelon form) of the transposed matrix.
-
The set of non-zero rows in is a linearly-independent set. These form the basis of the column space.
Note that the basis found by the algorithm above may not contain the original column vectors, but their linear combinations as elementary row operations have transformed the matrix into .
Let’s try it out by using the following code:
Create a free account to view this lesson.
By signing up, you agree to Educative's Terms of Service and Privacy Policy