Question 719021
<pre>
Eq 1. 2x + 2z = 2
Eq 2. 5x + 3y = 4
Eq 3. 3y - 4z = 4 

Line them up:

2x      + 2z = 2
5x + 3y      = 4
     3y - 4z = 4

2x + 0y + 2z = 2
5x + 3y + 0z = 4
0x + 3y - 4z = 4


{{{(matrix(3,5,

2,0,2,"|",2,
5,3,0,"|",4,
0,3,-4,"|",4))}}}

Multiply the first row thru by {{{1/2}}},
abbreviated:  {{{1/2}}}R1->R1

{{{(matrix(3,5,

1,0,1,"|",1,
5,3,0,"|",4,
0,3,-4,"|",4))}}}

Multiply the first row through by -5, add to
the second row, then restore the first row,
abbreviated   -5R1+R2->R2

{{{(matrix(3,5,
1,0,1,"|",1,
0,3,-5,"|",-1,
0,3,-4,"|",4))}}} 

Multiply the second row through by -1, add to
the third row, then restore the second row,
abbreviated   -R2+R3->R3 

{{{(matrix(3,5,
1,0,1,"|",1,
0,3,-5,"|",-1,
0,0,1,"|",5))}}}

Convert back to equations:

1x + 0y + 1z =  1
0x + 3y - 5z = -1
0x + 0y + 1z =  5

x + z =  1
3y - 5z = -1
z = 5

Substitute z = 5 into 

3y - 5z   = -1
3y - 5(5) = -1
  3y - 25 = -1
       3y = 24
        y = 8

Substitute z = 5 into

x + z = 1
x + 5 = 1
    x = -4

Edwin</pre>