I have the following:
$$ A = \begin{bmatrix}-1 & 2 \\ 3 & -5\end{bmatrix}; b = \begin{bmatrix}0 \\ \beta \end{bmatrix} $$
and I'm thinking how to analyse the Ax = b system. As I saw I could introduce the missing variables as so:
$$ A = \begin{bmatrix} -1 & 2 & 0 \\ 3 & -5 & 0 \\ 0 & 0 & -1\end{bmatrix} x = \begin{bmatrix} \xi \\ \eta \\ \beta \end{bmatrix} b = \begin{bmatrix} 0 \\ 0 \\ 0 \end{bmatrix} $$
Then I would be able to analyze the system starting with something like so:
$$ (i) \begin{bmatrix} -1 & 2 & 0 &| &0 \\ 3 & -5 & 0 &| &0\\ 0 & 0 & -1&| &0\end{bmatrix} $$
However it doesn't seems so good, since as I deduce I would find something like:
$$ \beta = -1 \\ \xi = 0 \\ \eta = 0 $$
How can I solve that?
Just solve the $2 \times 2$ system, treating $\beta$ as a constant. That will give you $x_1$ and $x_2$ in terms of $\beta$.