Find the solution set of triplets $(x,y,z)$ that fulfil this system using Gauss-Jordan:
$$\begin {cases} -x + 2z = 0\\ 3x - 6z = 0\\2x - 4z = 0\end {cases}$$
First of all, I don't see any $y$ variable there. I suppose it doesn't matter and I proceed normally:
\begin{bmatrix} -1 & 2 & 0\\ 3 & -6 & 0\\2 & -4 & 0 \end{bmatrix}
$$-f_1$$
\begin{bmatrix} 1 & -2 & 0\\ 3 & -6 & 0\\2 & -4 & 0 \end{bmatrix}
$$-3f_1+f_2$$
\begin{bmatrix} 1 & -2 & 0\\ 0 & 0 & 0\\2 & -4 & 0 \end{bmatrix}
$$-2f_1+f_3$$
\begin{bmatrix} 1 & -2 & 0\\ 0 & 0 & 0\\0 & 0 & 0 \end{bmatrix}
So, this is the staggered reduced form.
This is an homogeneous system (because of the null column), thus one solution is $(0,0,0)$.
Other than that, I have to check out the range of the system. The range is $1$, which is less than the number of columns... what is the number of columns? Is it $2$ because of the matrix I was working on, or is it $3$ because there was a hidden column for $y$? (Hidden because $y = 0$).
Anyway. The reason I want to know the "number of columns" is to calculate $$columns - range$$
Which yields the amount of parameters this system's solution depends on.
You are almost at the end.
The number of parameters is $3-1=2$, so we have two parameter say $y=t, z=s$ and hence $x=2s$ so the set of solutions are of the form $$(x,y,z)=(2s,t,s)=(0,0,0)+s(2,0,1)+t(0,1,0)$$ which is a plane or 2 dimensional subspace