One possible solution is the use of Gaussian elimination. That is the solution you suggest in your question. Note that there are basically three operations that you can apply to a system, that don't change the solution.
- Type 1: Swap the positions of two equations.
- Type 2: Multiply an equation by a nonzero number.
- Type 3: Add to one equation to the multiple of another.
That these operations don't change the solution of the system is illustrated in this nice answer.
Let's start from the beginning with:
\begin{align*}
4x+3y=&9.55 &&(I)\\
2x+2y=&5.90 &&(II)
\end{align*}
- Using an operation of Type 2, will result in:
\begin{align*}
4x+3y=&9.55 &&(I)\\
4x+4y=&11.80 &&(III) = 2\cdot(I)
\end{align*}
Using an operation of Type 3, will result in:
\begin{align*}
4x+3y&=9.55 &&(I)\\
y&=2.25 &&(IV) = (III) - (I)
\end{align*}
Now we can simply plug in $y=2.25$ into (I) and yield:
$$ 4x=9.55 - 3\cdot 2.25= 2.8 \qquad ⇒ x = 0.7$$
I have to multiply the bottom equation by −2
That is not true. In the first step above, we multiplied equation (II) with 2. But we can also multiply the first one with $\frac{1}{2}$:
\begin{align*}
2x+1.5y=&4.775 &&(III)=\frac{1}{2}\cdot(I)\\
2x+2y=&5.90 &&(II)
\end{align*}
Then you can do the second step as well, right?
The reason why the answer is given like that is, that Gaussian elimination is usually taught in the way, that the resulting equations form the so called row echelon form. The idea of the row echelon form is to use the three operations above to get a system that looks like this. So the last row contains one variable, the second to last row contains two variables etc. But, as always, it does not matter what way you choose, to get the result.
There are also different ways to solve it, for example you can use (II) to express $y$ as a variable depending on $x$
$$ y = \frac{5.90 - 2x}{2}= \frac{5.90}{2} - x = 2.95 - x \qquad (*)$$
and then plug that into (I):
\begin{align*}
&&4x+3y&= 9.55 \\
⇔&& 4x + 3\cdot(2.95-x)&=9.55 \\
⇔&& 4x - 3x &=9.55-8.85 \\
⇔&& x &= 0.7
\end{align*}
Then using $(*)$ we get $y = 2.25$.