[Math] How to check if the columns of a given vector spans Rn

linear algebramatrices

Q1: In this question, find out if the given vectors $\{v_1,v_2,v_3\}$ span $R^4$.
Vectors $v_1,v_2,v_3$

Q2: Given this matrix Matrix $B$ . Find out if the columns of this matrix span $R^4$.

I came across several solutions for these two questions. In all of those augmented matrix was made and checked for pivot columns.
My question is why are we creating augmented matrix to check the span ?
We should rather be making an equation like $[A]X = b$, where $A$ is the given matrix in the question, and then check for consistency.

Best Answer

Remember that one way to solve the equation $Ax = b$ is to make an augmented matrix, and we know that the system is consistent if it has the right amount of pivot columns. So what you saw online is probably just people doing exactly what you were describing.

One thing to remember is that 3 vectors can't span $\mathbb{R}^4$ you need at least 4 vectors, so for the first question, we don't even need to look at the vectors to know that we won't have enough vectors to span all of $\mathbb{R}^4$

For your second question, to see if the columns of the matrix span $\mathbb{R}^4$, all we need to do is row reduce the matrix. If we get the identity, then we'll span $\mathbb{R}^4$, and if we don't, (i.e. we get a row of all zeros somewhere) then that means there's some inconsistency in the system $Ax = b$ for some vector $b$ in $\mathbb{R}^4$ Thus the columns don't span all of $\mathbb{R}^4$.

when I row reduced I got the matrix $\begin{bmatrix} 1&0&-5&0\\ 0&1&1&0\\ 0&0&0&1\\ 0&0&0&0 \end{bmatrix}$

thus, the columns don't span $\mathbb{R}^4$, (I only have 3 pivot positions not 4, and I got a row of all $0$'s) I hope that helps! Good luck studying!