Reduced row echelon form
Reduced row echelon form is the matrix arrived at after back substitution is continued further to produce zeros above the pivots.
From reduced row echelon form of a matrix \( A \), it is easy to calculate the null space of \( A \).
Can you remember their form? On the reverse there are two examples.
Two matrices in reduced row echelon form:
Null space and reduced row echelon form
Consider the equation:
By definition, the set of vectors that "solve" this equation, \( \{ x \in R^{n} : Ax = 0 \} \) are the null space of \( A \). The magic of this equation is that any row-operations (multiple of rows added to other rows) that transform \( A \) into some other matrix \( A' \) do not alter the null space. In other words, \( A \) and \( A' \) have the same null space. So \( A \) has the same null space as the reduced row echelon form of \( A \).
Reading the null space from a matrix in reduced row echelon form
Consider the matrix:
We can see two convenient basis of the column space have been collected in the \( 0^{\text{th}} \) and \( 1^{\text{st}} \) columns. These vectors uniquely span the whole columns space of \( A' \). All other columns can be expressed in terms of these two vectors. The null space (the ratios of these vectors that add to zero) can be enumerate by following these steps:
- Choose one of the vectors that have not been designated as a basis (e.g. \( \begin{bmatrix}7 & 3\end{bmatrix}\) ).
- Find a combination of the basis, \( \begin{bmatrix}1 & 0\end{bmatrix} \) and \( \begin{bmatrix}0 & 1\end{bmatrix} \), that sum to \( \begin{bmatrix}7 & 3\end{bmatrix} \).
- Set the weighting for \( \begin{bmatrix}7 & 3\end{bmatrix} \) at 1, and set the weighting for the basis vectors to cancel this out (i.e. -1).
- Set 0 to be the weightings for all other columns.
Following these steps \( \begin{bmatrix} -7 & -3 & 1 & 0 \end{bmatrix} \) is one vector in the null space. The other is: \( \begin{bmatrix} -2 & -6 & 0 & 1 \end{bmatrix} \) .
These two vectors form a basis for the null space.