I'm given a system of linear equations with parameters a and b, and I'm supposed to find values for the parameters such that two variables can be chosen freely.
So, n = 3 (x1, x2, x3) and m=3 (number of equations).
For two variables to be free to chose, $n-r=2$, so I must find values for $a$ and $b$ such that the rank $r$ equals 1.
The system is:
$$ \begin{pmatrix} & ax_2 &+ x_3 &= -b \\ ax_1 & &+ bx_3 &= -1 \\ ax_1 & + ax_2 &+ 2x_3 &= -2 \end{pmatrix}$$
I applied Gauss elimination procedure, but am a bit confused about what it gives me to the end (just showing coefficients):
$$ \begin{pmatrix} a & a & 2 & -2 \\ 0 & -a & b-2 & 1 \\ 0 & 0 & b+1 & b-1 \end{pmatrix} $$
So from the last equation, $(b+1)x_3 = b-1$, and so $x_3 = (b-1)/(b+1)$.
But I'm not sure what to do now, setting $b=1$ means $x_3 = 0$. And then what do I do next?