Consider the augmented matrix
\begin{bmatrix}1&k&-1\\4&8&-4\end{bmatrix}
I want to find all the values of $k$ for which the corresponding linear system is consistent. Upon dividing the second row by $\frac{1}{4}$ we have
\begin{bmatrix}1&k&-1\\1&2&-1\end{bmatrix}
Upon subtracting the second row from the first row, and then assigning the results to the second row, we have
\begin{bmatrix}1&k&-1\\0&k-2&0\end{bmatrix}
In order to avoid a contradiction, it follows that $k$ can only equal $2$. However, the solution to this problem says that every $k\in \mathbb{R}$ causes the system to be consistent. What is the problem?
Well, I think what I failed to understand here is the algebra that allows me to deduce the unrestrictive or arbitrary nature of $k$, for my last system in my post converts to
$$\begin{align} x_1 + kx_2 &= -1 \\ (k-2)x_2 &= 0 \end{align}$$
We immediately see from the second equation that either $x_2 = 0$, which means that any value for $k$ will not pose any problems to our system, so it is consistent for all values of $k$ in this scenario; and if $k=2$, we also don't have any inconsistency.
Therefore, for all $k$ the system is consistent.