I'm unsure about the problem below
Under which conditions is the following linear equation system solvable ? $$x_1 + 2x_2 - 3x_3 = a$$ $$3x_1 - x_2 + 2x_3 = b$$ $$x_1 - 5x_2 + 8x_3 = c$$
We set up our matrix
$$\begin{bmatrix} 1 & 2 & -3 & | a \\ 3 & -1 & 2 & | b \\ 1 & -5 & 8 & | c \\ \end{bmatrix}$$
We apply -3 first row to second row and -1 first row to third row. Then we add -1 second row to third row. We get
$$\begin{bmatrix} 1 & 2 & -3 & |a\\ 0 & -7 & 11 & |b - 3a\\ 0 & 0 & 0 & |2a - b + c\\ \end{bmatrix}$$
So $2a - b + c = 0$ for the system to be solvable. Is this correct ? I fear that there are other conditions that I forgot ?
Yes, you are correct. The point is you have a (bottom) row with all zeros, and on that row, the right side must be zero. You are in row echelon form if you take full course on linear algebra, and often the first chapter of those books will address question like this.