Solution Set and Rank

Learn the relationship between the rank of a matrix and the corresponding solution(s) of the system of linear equations.

From a system of mm linear equations having nn unknowns, we can create a coefficient matrix Am×nA_{m \times n} and an augmented matrix [Ab]m×n+1[A|b]_{m \times n+1}. The rank of any matrix is equal to the number of linearly independent rows of that matrix, which is equal to the number of pivots in the rrefrref (reduced row echelon form) of that matrix. We saw earlier that there are three possibilities for the solution set of a system of linear equations, including no solution, a unique solution, or infinite solutions. This lesson explores these three possibilities’ relationships with rank.

Nonhomogeneous systems

We first consider a nonhomogeneous system, Ax=bA\bold{x}=\bold{b} where at least one element of vector b\bold b is nonzero.

No solution

A system of linear equations has no solution when it’s inconsistent. We can employ rank to find this inconsistency. A system Ax=bA\bold{x}=\bold{b} has no solution if and only if r(A)<r([Ab])r(A)<r([A|b]). That is, the rank of the coefficient matrix is less than the rank of the augmented matrix. In the following example, the system has no solutions, because the rank of the coefficient matrix is 11, whereas the rank of the augmented matrix is 22. The rank is computed by first converting each matrix to its rrefrref and subsequently counting the number of nonzero rows.

Linear system Coefficient matrix’s rrefrref Augmented matrix’s rrefrref
x1+2x2=32x1+4x2=7\begin{array}{} x_1+2x_2=3 \\ 2x_1+4x_2=7 \end{array} (1200)\begin{pmatrix}1&2\\ 0&0\end{pmatrix} (123001)\begin{pmatrix}1&2&3\\ 0&0&1\end{pmatrix}
...