Question 1129997
<br>
Your "answer" makes no sense; the answer should show the values of x, y, and z that satisfy all three equations.<br>
There are always an endless number of different ways to solve a system of equations using Gaussian elimination.  I will show one.<br>
The beginning matrix is this:<br>
{{{matrix(3,4,0.1,-0.2,0.3,4,0.5,-0.1,0.4,16,0.7,-0.2,0.3,16)}}}<br>
The first thing I would do is multiply each row (i.e., each equation) by 10 to get rid of the decimals, since working with integers is much easier.<br>
{{{matrix(3,4,1,-2,3,40,5,-1,4,160,7,-2,3,160)}}}<br>
Now before I plunge into the standard techniques for Gaussian elimination, I'm going to look at the equations to see if there is some major simplification that can be made.  And I see that the coefficients of y and z in both the first and third equations are the same (-2 and 3); that means I can get an equation in x only by subtracting the first equation from the third.<br>
So my first step (after converting the matrix to all integers) will be to replace row 3 with (row 3 minus row 1):<br>
{{{matrix(3,4,1,-2,3,40,5,-1,4,160,6,0,0,120)}}}<br>
Next I will combine two steps: dividing row 3 by 6, and making it the first row (since it will be in the form I want for the first row of the final matrix):<br>
{{{matrix(3,4,1,0,0,20,1,-2,3,40,5,-1,4,160)}}}<br>
Next use row 1 to get 0's in the first column of rows 2 and 3: replace row 2 with (row 1 minus row 2) and replace row 3 with (row 3 minus 5 times row 1):<br>
{{{matrix(3,4,1,0,0,20,0,2,-3,-20,0,-1,4,60)}}}<br>
The first column of my matrix is in its final form; next I want to get a "1" in row 2 column 2.  I can do that by replacing row 2 with (row 2 plus row 3):<br>
{{{matrix(3,4,1,0,0,20,0,1,1,40,0,-1,4,60)}}}<br>
Next, to finish column 2, I need a "0" in row 3 column 2; I can do that by replacing row 3 with (row 3 plus row 2):<br>
{{{matrix(3,4,1,0,0,20,0,1,1,40,0,0,5,100)}}}<br>
Column 2 is finished; next I need a "1" in row 3 column 3.  I can get that by dividing row 3 by 5:<br>
{{{matrix(3,4,1,0,0,20,0,1,1,40,0,0,1,20)}}}<br>
And last I need a "0" in row 2 column 3; I get that by replacing row 2 with (row 2 minus row 3):<br>
{{{matrix(3,4,1,0,0,20,0,1,0,20,0,0,1,20)}}}<br>
The matrix is in the desired final form; it shows the solution to the system is<br>
x=20; y=20; z=20