I'm trying to solve an equation system using Gauss-Jordan.
$$\begin {cases} 2x+4y = 6\\ 3x+6y = 5\end {cases}$$
So, first, the augmented matrix:
\begin{bmatrix} 2&4&5\\ 3&6&6\\ \end{bmatrix}
I want to reduce it to the "staggered reduced form" (how is that called?), so I start:
$$-f_1+f_2$$
\begin{bmatrix} 2&4&5\\ 1&2&1\\ \end{bmatrix}
$$-2f_2+f_1$$
\begin{bmatrix} 0&0&3\\ 1&2&1\\ \end{bmatrix}
$$f_1f_2$$
\begin{bmatrix} 1&2&1\\ 0&0&3\\ \end{bmatrix}
Then, I would transform that $3$ into a $1$ and somehow get rid of the $2$ and $1$ from the first row (not sure how) to complete the reduction, yes?
However, look at the last row: $0, 0, 3$. That's to say
$$0x+0y=3$$
Does that mean that the equation system has no solutions?
Divide the original equations by $2$ and $3$ respectively. Then they both specify the value of $x+2y$, but the values differ.