I will post the original question that was done as an example in a linear algebra lecture followed up by my confusions / additional questions :)
Original Question:
What is the span inside $\mathbb{R}^3$ of
$$\underline{u_1} = \begin{pmatrix} 1\\ 1\\ 1 \end{pmatrix}, \underline{u_2} = \begin{pmatrix} -1\\ 0\\ 2 \end{pmatrix}, \underline{u_3} = \begin{pmatrix} 0\\ 1\\ 3 \end{pmatrix}, \underline{u_4} = \begin{pmatrix} -1\\ 1\\ 5 \end{pmatrix}$$
We want to find vectors $\underline{b}$ such that:
$$ \underline{b} = \lambda_1 \underline{u_1} + \lambda_2 \underline{u_2} + \lambda_3 \underline{u_3} + \lambda_4 \underline{u_4} = A \underline{\lambda} $$
So we write:
$$ \left[ \begin{array}{cccc|c} 1&-1&0&-1&b_1\\ 1&0&1&1&b_2\\ 1&2&3&5&b_3 \end{array} \right] $$
Through elementary row operations we reach:
$$ \left[ \begin{array}{cccc|c} 1&0&1&1&b_2\\ 0&1&1&2&b_2-b_1\\ 0&0&0&0&2b_1-3b_2+b_3 \end{array} \right] $$
Thus it is consistent when $2b_1 -3b_2 + b_3 = 0$ which is the equation of a plane. So the span of the 4 vectors is this plane.
My question:
Why, once we reach RREF of the augmented matrix are we able to to just ignore the other two equations. Sure the row of zeroes if definitely more interesting but how do we know that the other two equations don't restrict the span at all?