I need to find a base that includes only matrices with Rank=1 for the following space: $$V=\left \{ \right.(\begin{smallmatrix} x-y &2x+3y+3z \\ -14x-7y-21z & -8x+8y \end{smallmatrix}\bigr):x,y,z\in\mathbb{R}\left. \right \}$$
What I did is:
1) Extracted $x,y,x$ to find the $span$: $$V=sp\left \{ x\begin{pmatrix} 1 &2 \\ -14&8 \end{pmatrix},y\begin{pmatrix} -1 &1 \\ -7 &8 \end{pmatrix},z\begin{pmatrix} 0 &1 \\ -7 &0 \end{pmatrix} \right \}$$
2) Find the base of this $span$ using Gauss-Elimination: $$\Rightarrow V=sp\left \{ \bigl(\begin{smallmatrix} 1 &0 \\ 0 &-8 \end{smallmatrix}\bigr),\bigl(\begin{smallmatrix} 0 &1 \\ -7 &0 \end{smallmatrix}\bigr) \right \}$$
The base I found includes matrices with Rank=2 therefore doesn't comply with the question terms. I would be really glad to hear some insights about this one!
First off, you’ve got some errors in your initial decomposition of the defining equation for $V$. The space actually consists of all linear combinations $$x\begin{bmatrix}1&2\\-14&-8\end{bmatrix}+y\begin{bmatrix}-1&3\\-7&8\end{bmatrix} + z\begin{bmatrix}0&3\\-21&0\end{bmatrix}.$$ You can use any of the usual methods to find a simpler basis for $V$. From one such basis we find that $V$ consists of matrices of the form $$\alpha \begin{bmatrix}1&0\\0&-8\end{bmatrix} + \beta \begin{bmatrix}0&1\\0&0\end{bmatrix} + \gamma \begin{bmatrix} 0&0\\1&0 \end{bmatrix} = \begin{bmatrix} \alpha & \beta \\ \gamma & -8\alpha \end{bmatrix}.\tag{*}$$ Now, a rank-one $2\times2$ matrix is a non-zero matrix with zero determinant, so you need to find a linearly-independent set of three matrices of the form given by (*) for which $8\alpha^2+\beta\gamma=0$, with at least one of these parameters non-zero. You can do this by inspection: setting $\alpha=0$ and one of $\beta$, $\gamma$ to zero as well gives two such matrices, and for the third, you can take any non-zero values with different signs for $\beta$ and $\gamma$, and $\pm\sqrt{-\beta\gamma/8}$ for $\alpha$. A simple example of such a set is $$\left\{ \begin{bmatrix}0&1\\0&0\end{bmatrix}, \begin{bmatrix}0&0\\1&0\end{bmatrix}, \begin{bmatrix}1&-1\\8&-8\end{bmatrix} \right\}.$$ Another approach, once you have the basis in (*), is to recall that in a rank-one matrix, all the columns are scalars multiples of each other (as are the rows). The second two matrices in the basis—the standard basis elements $E_{12}$ and $E_{21}$—already satisfy this condition, but the first one doesn’t. However, you can add multiples of $E_{12}$ and $E_{21}$ to it to set the off-diagonal elements to any desired value without disturbing the diagonal elements, and the resulting matrix will also be linearly independent of $E_{12}$ and $E_{21}$. Taking $\beta=1$ and $\gamma=8$ produces $\tiny{\begin{bmatrix}1&-1\\8&-8\end{bmatrix}}$, which obviously has rank one.