I'm currently attempting to solve the following problem:
Find the value(s) of $k$ such that the vectors $\{\vec{a}_1, \vec{a}_2, \vec{a}_3\}$ do not span $\mathbb{R}^3$, where:
$$ a_1 = \begin{bmatrix}-1\\k\\7\end{bmatrix}, \quad a_2 = \begin{bmatrix}4\\-2\\5\end{bmatrix}, \quad a_3 = \begin{bmatrix}1\\-7\\2\end{bmatrix} $$
To try and solve this, I first tried putting these vectors into an augmented matrix and attempted to reduce it:
$$ \begin{bmatrix} -1 & 4 & 1 \\ k & -2 & -7 \\ 7 & 5 & 2 \\ \end{bmatrix} \to \begin{bmatrix} -1 & 4 & 1 \\ k & -2 & -7 \\ 0 & 33 & 9 \\ \end{bmatrix} \to \begin{bmatrix} -1 & 4 & 1 \\ 0 & -2 + 4k & -7 + k \\ 0 & 33 & 9 \\ \end{bmatrix} $$
From here, I thought that perhaps what I needed to do was add up the elements in the second row, and set it equal to zero (solve for $-2 + 4k -7 + k = 0$) so that I could find the values for $k$ where the second row is equal to zero and so could not span $\mathbb{R}^3$. I then arrived at the solution $k = \frac{9}{5}$, but that did not turn out to be the answer.
I then wondered if I needed to account for the 'variables' -- if the matrix can be expressed as $\vec{a}_1 x_1 + \vec{a}_2 x_2 + \vec{a}_3 x_3 = \vec{b}$, then perhaps I need to do $(-2 + 4k)x_2 + (-7 + k)x_3 = 0$. If so, then I thought that the solutions might be $k=\frac{2x_2+7x_3}{4x_2+x_3}$, but that also was not the solution (and in any case, I think I'm expected to provide actual numbers, not a formula).
I did look at this problem, which is attempting to solve a similar solution except in $\mathbb{R}^2$. In that posted question, it's very obvious that $h$ must be any value other then $3$, but I'm not seeing any obvious values for $k$ in my problem.
What am I doing wrong?