I'm learning linear algebra, specifically linear independence and subspaces, and need help with the following problem:
Consider the vectors $\vec{x} = (1, 2, -2, 1), \vec{y} = (1, 3, -1, 4), \vec{z} = (2, 1, -7, -7) \in \mathbb{R^4}$ and let $V$ be the subspace spanned by $\vec{x}, \vec{y}, \vec{z}$. $(1)$ Show that the vectors $\vec{x}, \vec{y}, \vec{z}$ are linearly dependent and find their dependence relationship. $(2)$ Find a subspace $U$ such that $\mathbb{R^{4}} = V \oplus U$.
Since I'm having difficulties for $(2)$, I'm going to share my work for $(1)$.
$(1)$ The vector $\vec{x}, \vec{y}, \vec{z}$ are linearly dependent if the exists $\alpha_i, i= 1, 2, 3$ not all $0$ such that
$$\alpha_1 \begin{pmatrix}1\\2\\-2\\1\end{pmatrix}+\alpha_2 \begin{pmatrix}1\\3\\-1\\4\end{pmatrix}+\alpha_3 \begin{pmatrix}2\\1\\-7\\-7\end{pmatrix}=\begin{pmatrix}0\\0\\0\\0\end{pmatrix} \tag{*}$$
$(*)$ translates to a system of linear equations. We use the Gauss-Jordan elimination method to solve it. We write down the augmented matrix and after some simple operations we find the row-reduced echelon form
$$\begin{pmatrix}1 & 1 & 2 & 0\\2 & 3 & 1 & 0\\-2 & -1 & -7 & 0\\ 1 & 4 & -7 & 0\end{pmatrix} \to \ldots \to \begin{pmatrix}1 & 0 & 5 & 0\\0 & 1 & -3 & 0\\0 & 0 & 0 & 0\\ 0 & 0 & 0 & 0\end{pmatrix}.$$
I skipped the steps to find the row-reduced echelon form to save me some time, they are very simple. There are an infinite number of solutions to the system given by $(*)$ which means that the vectors $\vec{x}, \vec{y}, \vec{z}$ are linearly dependent. From the row-reduced echelon form we see that $\alpha_1, \alpha_2$ are basic variables and $\alpha_3$ is the free variable. The dependence relationship can be written as
$$\alpha_1 = -5\alpha_3, \, \alpha_2 = 3\alpha_3, \, \alpha_3 \, \text{free}.$$
Is my work correct for $(1)$? Besides the intermediate steps to find the row-reduced echelon form, do I need to clarify anything else? For $(2)$ I'm a bit lost. I just finished learning about vector subspaces and direct sums and everything is still not clear. I think the first step would be to find a basis for $V$ (how?). Then we know that the dimension of the subspace $U$ that we need to determine must satisfy $\dim{U} = 4 - \dim{V}$.
Any help would be appreciated.