I know what is the column space of a matrix: it is basically the subspace formed by the linear combinations of the columns (vectors) of a matrix. From wikipedia, we have the following nice picture:
Which shows up the vectors that are used to make any linear combination to form the column space.
So, my problem is not strictly related to the concept of column space of a matrix, but why is it useful?
Before knowing the concept of column space, I already was used to find, for example, the RREF of a matrix, to see if the columns for a basis or are linearly independent or whatever... What's in the connection between column space and all those things?
$\endgroup$ 22 Answers
$\begingroup$An important property:
The linear system $Ax=b$ has a solution if and only if $b$ belongs to the column space of $A$.
Since linear systems of equations arise often in practice (particularly when working with computers), knowing when a linear system of equations has a solution may be very useful.
$\endgroup$ 0 $\begingroup$The columns of a given matrix span the range of that matrix. In other words, if $(a_1,...,a_n)$ are the column vectors of $A$, then $Range(A)=span(a_1,...,a_n)$. The number of linearly independent column vectors gives thus the rank of the matrix $A$. And knowing whether $Ax=b$ has a solution, i.e. if $b\in Range(A)$, we only have to check whether $b\in span(a_1,...,a_n)=Col(A)$.
Through the rank-nullify theorem this also gives information of the kernel and injectivity of the matrix, and thus uniqueness of solutions whenever they exist. The Rank-Nullity theorem states that $Rank(A)+Null(A)=dim(domain(A))$, where $Null(A)$ denotes here for short the dimension of the kernel of $A$ (or the null space). Thus if $A$ has the same amount of linearly independent column vectors as the domain's dimension, then the matrix is injective as a linear operator, so whenever $Ax=b$ is solvable then the solution is unique. If there are less linearly independent column vectors as the domain's dimension, then whenver that equation is solvable, there are infinitely many solutions.
$\endgroup$