The nullspace of a matrix A is made up of the vectors x for which Ax=0.
Suppose:
A=1232462682810.
(Note that the columns of this matrix A are not independent.) Our algorithm for computing the nullspace of this matrix uses the method of elimination, despite the fact that A is not invertible. We don’t need to use an augmented matrix because the right side (the vector b) is 0 in this computation.
The row operations used in the method of elimination don’t change the solution to Ax=b so they don’t change the nullspace. (They do affect the column space.)
The first step of elimination gives us:
A=1232462682810⟶100200222244.
We don’t find a pivot in the second column, so our next pivot is the 2 in the third column of the second row:
100200222244⟶100200220240=U
The matrix U is in echelon (staircase) form. The third row is zero because row 3 was a linear combination of rows 1 and 2; it was eliminated.
The rank of a matrix A equals the number of pivots it has. In this example, the rank of A (and of U ) is 2.
Once we’ve found U we can use back-substitution to find the solutions x to the equation Ux=0 . In our example, columns 1 and 3 are pivot columns containing pivots, and columns 2 and 4 are free columns. We can assign any value to x2 and x4; we call these free variables. Suppose x2=1 and x4=0 . Then:
2x3+4x4=0⟹x3=0
and:
x1+2x2+2x3+2x4=0⟹x1=−2.
So one solution is x=−2100 (because the second column is just twice the first column). Any multiple of this vector is in the nullspace.
Letting a different free variable equal 1 and setting the other free variables equal to zero gives us other vectors in the nullspace. For example:
x=20−21
has x4=1 and x2=0 . The nullspace of A is the collection of all linear combinations of these “special solution” vectors.
The rank r of A equals the number of pivot columns, so the number of free columns is n−r : the number of columns (variables) minus the number of pivot columns. This equals the number of special solution vectors and the dimension of the nullspace.
By continuing to use the method of elimination we can convert U to a matrix R in reduced row echelon form (rref form), with pivots equal to 1 and zeros above and below the pivots.
By exchanging some columns, R can be rewritten with a copy of the identity matrix in the upper left corner, possibly followed by some free columns on the right. If some rows of A are linearly dependent, the lower rows of the matrix R will be filled with zeros:
R=[I0F0].
(Here I is an r by r square matrix.)
If N is the nullspace matrix N=[−FI] then RN=0 . (Here I is an n−r by n−r square matrix and 0 is an m by n−r matrix.) The columns of N are the special solutions.
c) Find any special solutions to the equation Ax=0 .
Solution
a) To transform A into its reduced row form, we perform a series of row operations. Different operations are possible (same answer!). First, we multiply the first row by 2 and subtract it from the third row:
10254−2711197−3⟶10054−1271−397−21.
We then multiply the second row by 41 to make the second pivot 1: