.
Use the matrix capabilities of a graphing utility to write the augmented matrix corresponding to the system of equations
in reduced row-echelon form. Then solve the system. If the system is dependent, express x, y, and z in terms of the parameter a.
3x+3y+12z=3
x+y+4z=1
2x+5y+20z=8
-x+2y+8z=5
**NOTE: I've determined the determinate is zero and tried entering "no solution" but that is incorrect. I've also figured -1,2,0,0
~~~~~~~~~~~~~~~~~~~~~~
You have the system of 4 equations for only 3 unknown.
So, let's look in it more attentively.
Then you see that the first equation is exactly the second, multiplied by 3.
So, these two equations represent, actually, one single equation and do contribute nothing more to remaining equations.
Therefore, we can consider and focus on the EQUIVALENT system, which contains equations (2), (3) and (4) ONLY. It is
x + y + 4z = 1 (2)
2x + 5y + 20z = 8 (3)
-x + 2y + 8z = 5 (4)
Its determinant is 0. (For quick calculations, I used the free of charge online solver
https://www.algebra.com/algebra/homework/Matrices-and-determiminant/determinant-of-3x3-matrix.solver of this site).
Now, let's apply the Gauss elimination. As the first step, let's eliminate "x".
For it, multiply eq(1) by 2 and then subract from eq(2).
Also, add eq(1) to eq(3). You will get
x + y + 4z = 1 (5) (same as (2) )
0x + 3y + 12z = 6 (6) (instead of (3) )
0x + 3y + 12z = 6 (7) (instead of (4) )
Next step, eliminate "y". For it, subtract eq(6) from eq(7). You will get
x + y + 4z = 1 (8)
0x + 3y + 12z = 6 (9)
0x + 0y + 0z = 0 (10)
Now you actually have the system of 2 equations for 3 unknowns
x + y + 4z = 1 (11)
0x + y + 4z = 2 (12)
You can make one more/next step by subtracting eq(12) from eq(11). It will give you
x = -1 (13)
y + 4z = 2 (14)
Now take a = z as a parameter. Then from eq(14), y = 2-4a.
Thus the original system has infinitely many solutions (x,y,z) = (-1,2-4a,a) for any value of real number "a".
Answer. The system is DEPENDENT and has infinitely many solutions of the form (x,y,z) = (-1,2-4a,a), where "a" is the parameter (any real number).
Solved.