Author: Autumn Twitchell atwitch23@gmail.com
The fundamental subspaces of a matrix are four vector spaces of a matrix. If we are given a matrix mxn matrix A, the fundamental spaces are as follows:
Note: If the matrix A is real, A∗=AT. If the matrix A is complex, A∗=AH.
The four fundamental subspaces are important to understand the properties of matrices such as the rank of a matrix. They are also important in the Fundamental Theorem of Linear Algebra. The subspaces are also connected to the Singular Value Decomposition (SVD) of a matrix. When we know what the four subspaces of a matrix are, we have a good understanding of whether the matrix has no solution, one solution, or many solutions. Knowing this helps us to know how to find the best solution for the matrix.
Let A be an mxn matrix. An easy way to think about R(A) is to remember that it is called the column space of A, thus it is characterized as the span of the columns of A. So if we show A as A=[c1,c2,...,cn], then a point x∈Rn is transformed as Ax=x1c1+x2c2+...+xncn, which is a linear combination of the columns of A. So the range can be expressed as R(A)=span({c1,c2,...,cn}).
To find the nullspace, we are looking to solve the equation Ax=0. It is often easiest to solve by reducing the matrix to row echelon form.
The method of solving R(A∗) and N(A∗) is extremely similar to solving R(A) and N(A). The difference is that we are looking at the transpose of A (or hermitian if A∈Cmxn). So we transpose the matrix and find the range space and nullspace of the transformed matrix.
Some important properties for the fundamental subspaces are found in the fundamental theorem of linear algebra. It states that the column and row spaces (R(A) and R(A∗)) have the same dimension r, which is the rank of the matrix. The nullspace has dimension n−r, and the left nullspace has dimension m−r. This means that if we are looking at an mxn matrix where m≥n, and it is full rank, the nullspace will only contain the zero vector.
Another part of the fundamental theorem of algebra is that the nullspace and row space are orthogonal, as well as the range space and left nullspace. These properties are depicted in Dr. Beard's telephone pole diagram depicted below.
As mentioned in the previous section, the fundamental subspaces are connected to the SVD of a matrix. If A is an mxn matrix, where A=UΣVH, we find that
R(A)=span(U1)
N(A)=span(V2)
R(A∗)=span(V1)
N(A∗)=span(U2)
where U is an mxm matrix, Σ is an mxn diagonal matrix, and V is an nxn matrix. U1 is the first r columns of U and U2 is the last m−r columns of U. V1 is the first r columns of V and V2 is the last n−r columns of V.
So then our SVD looks something like this
A=UΣVH=[U1U2][Σ100Σ2][VH1VH2]
More information on SVDs can be found Topic 24. Singular Value Decomposition.
We're going to look at two matrices and solve for their four fundamental subspaces.
Suppose A=[133456789]
We can easily spot that the columns of A are [147],[358],[369]
Thus R(A)=span({[147],[358],[369]})
It isn't necessary to include all of the columns of A if some are linearly dependent. If we were unsure as to whether they are linearly independent we could verify this with some linear algebra (see Topic 4. Linear Independence for more information). Here we're just going to let Python do it for us:
# Import modules for linear algebra
import numpy as np
import sympy
sympy.init_printing()
A = sympy.Matrix([[1,3,3], [4,5,6], [7,8,9]])
print("A = ")
display(A)
# row reduce to see if it's linearly independent
rr,a = A.rref()
print("rref of A = ")
display(rr)
A =
rref of A =
When we row reduce the matrix A, we can see that the rank of A is 3, which is the number of columns and rows of A, thus A is full rank and linearly independent. Therefore, we include all the columns of A in the range of A.
Now to find the nullspace N(A), we solve for the equation Ax=0
Thus we have [133456789][x1x2x3]=[000]
Interesting property of a matrix with linearly independent columns is that there is no vector x that will that will make Ax=0 unless x is the zero vector. Therefore N(A)=0
Because A is a real matrix we know we will be solving for R(AT). As was mentioned in the introduction, the range space of AT is equivalent to the row space of A because we are looking at the columns of AT.
AT=[147358369]
We can see here that the column space of AT is equal to the span({[133],[456],[789]})
Checking for linear independence, we get:
AT = A.T
# row reduce to see if it's linearly independent
rrat,a = AT.rref()
print("rref of A^T = ")
display(rrat)
rref of A^T =
Yay! The columns of AT are linearly independent which means the span of all the columns of AT are in R(AT). So R(AT)=span({[133],[456],[789]})
Similar to finding N(A), since the columns of AT are linearly independent, N(AT)=0.
R(B)=span({[25],[36],[47]})
Solve Bx=0
Thus we have [234567][x1x2x3]=[00]
If we row reduce the matrix, we can find our nullspace:
B = sympy.Matrix([[2,3,4], [5,6,7]])
# row reduce to see if it's linearly independent
rrb,b = B.rref()
print("rref of B = ")
display(rrb)
rref of B =
We can see from the row reduced form that this matrix is full rank, but since there are more m columns than n rows, the nullspace will have a dimension of m-n. So in this case we should have one column in our nullspace. From the row reduced form we get the following equations:
{x1−x3=0x2+2x3=0
Thus we have [x1x2x3]=[x3−2x3x3]
Setting x3 to 1, we have a basis for our nullspace: N(B)=span([1−21])
# row reduce to see if it's linearly independent
rrb,b = B.T.rref()
print("rref of B = ")
display(rrb)
rref of B =
Because this is a tall matrix, our solution is overdetermined. Since our columns are linearly independent, the matrix is considered full rank and therefore N(BT)=0.
Linear algebra is heavily used when it comes to solving electrical circuits. In most simple circuits that are solved, there is one solution for the system of equations. This means that the matrix used to solve the linear equations of the circuit is linearly independent and full rank, therefore the dimensions of R(A) and R(AT) are the minimum value between the columns and rows of the matrix. This also means that N(A) and N(AT) only contain the zero vector.
In the case below, we are going to look at the current of a circuit that doesn't have any elements to it besides wire.
In the picture above, we are going to solve for the difference in current (current is represented by the b's) at the nodes x1,x2,x3,x4.
Solving for the currents, we have:
{−x1+x3=b1x3−x4=b2−x1+x4=b3x1−x2=b4−x2+x4=b5
Which forms Ax=b: [−1010001−1−10011−1000−101][x1x2x3x4]=[b1b2b3b4]
To see if our matrix A is linearly independent, we'll row reduce the matrix using Python.
A = sympy.Matrix([[-1,0,1,0], [0,0,1,-1], [-1,0,0,1],[1,-1,0,0], [0,-1,0,1]])
rref,a = A.rref()
print("rref of A = ")
display(rref)
rref of A =
This shows us that the rank of the matrix is 3 since there are 3 rows with values in the matrix after the row reduction. Since the fourth column is a linear combination of the first three, we do not need to include it in our range space.
Therefore we get R(A)=span{[−10−110],[000−1−1],[11000]}
Now we can keep going like this, or we can use some Python :)
# Use sympy.columnspace() and sympy.nullspace() method
A_columnspace = A.columnspace()
A_nullspace = A.nullspace()
A_T_columnspace = A.T.columnspace()
A_T_nullspace = A.T.nullspace()
print("R(A) = span")
display(A_columnspace)
print("N(A) = span")
display(A_nullspace)
print("R(A^T) = span")
display(A_T_columnspace)
print("N(A^T) = span")
display(A_T_nullspace)
R(A) = span
N(A) = span
R(A^T) = span
N(A^T) = span
Knowing these spaces helps us to know what kind of problem we are dealing with. In this case the problem has many solutions.
For an mxn matrix A, show that the dim(N(A))=n−rank(A).