Answer:
(x, y, z) = (1, 1, 0)
Explanation:
You want to solve the given system of equations by elimination.
Solution
There are a couple of nice choices for variables to eliminate.
The last equation has an x-coefficient that is the opposite of the x-coefficient in the other two equations. Adding that equation to those will eliminate the x-variable:
(-2x +2y +3z) +(2x +3y +3z) = (0) +(5) ⇒ 5y +6z = 5 . . . . add eqns 1, 3
(-2x -y +z) +(2x +3y +3z) = (-3) +(5) ⇒ 2y +4z = 2 . . . . add eqns 2, 3
The second of these equations can be divided by 2 to give ...
y +2z = 1
Three times this equation can be subtracted from the first of the reduced equations to eliminate z:
(5y +6z) -3(y +2z) = (5) -3(1) ⇒ 2y = 2
y = 1 . . . . divide by 2
Substitution
Now, we can substitute this value into the previous equation to find the other variables.
y +2z = 1 = 1 +2z ⇒ 0 = 2z ⇒ z = 0
-2x -y +z = -3 = -2x -(1) +(0) ⇒ -2 = -2x ⇒ x = 1
The solution is (x, y, z) = (1, 1, 0).
__
Additional comment
The attachment shows a calculator solution to the system of equations by reducing the augmented matrix to "reduced row-echelon form." In general, that is a process of elimination. Each equation ends up with one variable having a coefficient of 1, so we have x = 1, y = 1, z = 0.
You could also start by eliminating the y-variables. Adding twice the second equation to the first will do that, as will adding 3 times the second equation to the third. The result of these operations is two equations in x and z.