W is generated by {(1,-2,0,3), (1,-1,-1,4), (1,0,-2,5)}
I have found out that the third vector is linearly dependent on the previous two. Thus the basis of the solution space is W = {(1,-2,0,3), (1,-1,-1,4)}
Now I haven't been able to figure out what to do next for two days. I have Googled similar problems, run through different texts and read some previous answers but couldn't understand the concept behind the methodology employed to solve this problem.
If someone can give me the basic algorithm itself on how to make an approach to such problems, I will be grateful.
Thank you for your time.
$W$ is the set of all linear combinations of the basis vectors, i.e. all $c_1\begin{bmatrix}1\\-2\\0\\3\end{bmatrix} +c_2\begin{bmatrix}1\\-1\\-1\\4\end{bmatrix}$ for $c_1,c_2\in\mathbb{R}$. We can ask: when can $c_1\begin{bmatrix}1\\-2\\0\\3\end{bmatrix} +c_2\begin{bmatrix}1\\-1\\-1\\4\end{bmatrix}$ give me a particular vector $\begin{bmatrix}x_1\\x_2\\x_3\\x_4\end{bmatrix}$? What rules do $x_1,x_2,x_3,x_4$ have to follow to make it part of $W$?
Setting that up as $\begin{bmatrix}1&1\\-2&-1\\0&-1\\3&4\end{bmatrix}\begin{bmatrix}c_1\\c_2\end{bmatrix}=\begin{bmatrix}x_1\\x_2\\x_3\\x_4\end{bmatrix}$ and solving we get: $\left[\begin{array}{cc|c}1&1&x_1\\-2&-1&x_2\\0&-1&x_3\\3&4&x_4\end{array}\right]$ $\rightarrow$ $\begin{array}{l}R2=R2+2R1\\R4=R4-3R1\end{array}$ $\rightarrow$ $\left[\begin{array}{cc|c}1&1&x_1\\0&1&2x_1+x_2\\0&-1&x_3\\0&1&x_4-3x_1\end{array}\right]$ $\rightarrow$ $\begin{array}{l}R3=R3+R2\\R4=R4-R2\end{array}$ $\rightarrow$ $\left[\begin{array}{cc|c}1&1&x_1\\0&1&2x_1+x_2\\0&0&2x_1+x_2+x_3\\0&0&x_4-5x_1-x_2\end{array}\right]$.
For consistency (for this to be a solution) we need RHS=$0$ for each row where LHS is all zeros. This gives us two constraints:
$2x_1+x_2+x_3=0$ and $x_4-5x_1-x_2=0$
Those are the homogenous equations you're looking for.
Sometimes when you've got fewer rows or more columns you'll get a reduced matrix without any $\left[0~0~|~\text{blah}\right]$ rows. In this case, the system is always consistent and the solution space is the whole space. You can think of the whole space as matching the rather odd equation $0x_1+0x_2+\cdots+0x_n=0$, which works for any $x_1,x_2,\cdots,x_n$.