My book has an example where they ask us to find whether a system of linear equations is consistent.
A paraphrased version of the example reads as follows:
The rank of the coefficient matrix is equal to the rank of the augmented matrix.
Original augmented matrix: \begin{bmatrix}1&1&-1&-1\\1&0&1&3\\3&2&-1&1\end{bmatrix} Reduced matrix: \begin{bmatrix}1&0&1&3\\0&1&-2&-4\\0&0&0&0\end{bmatrix}
As shown above, b is in the column space of A, so the system of linear >equations is consistent.
I'm just confused on how they knew that b is in the column space of A. When they say "as shown above", what are they referring to? Does it have something to do with the rank that they mentioned earlier in the example?