How do you solve the following linear system: #2x-y+3z= 7 , x-2y-z=2, 4x+y-2z=-4 #?

1 Answer
Mar 7, 2017

#( x,y,z ) = ( 3/13,- 22/13,21/13 )#

Explanation:

Taking:

#2x-y+3z= 7 , x-2y-z=2, 4x+y-2z=-4#

We can write it in matrix form first:

#((2, -1 , 3),(1, -2, -1),(4,1,-2))((x),(y),(z)) = ((7),(2),(-4))#

Good thing about that presentation is that you can start looking for column and row vector linear dependence, in which case there is no solution.....or an infinite number of solutions.

But it looks OK, so we write the augmented matrix [can't get the type-setting right for that on Socratic so it will look a bit odd] and go to row reduction:

#((2, -1 , 3),(1, -2, -1),(4,1,-2)) ((7),(2),(-4))#

We'll switch R1 and R2 to get a #1# at #a_(1,1)# [pointless move, in hindsight]:

#((1, -2, -1),(2, -1 , 3),(4,1,-2)) ((2),(7),(-4))#

Then #R2 to R2 - 2 R1, R3 to R3 - 4 R1#

#((1, -2, -1),(0, 3 , 5),(0,9,2)) ((2),(3),(-12))#

#R3 to R3 - 3 R2#

#((1, -2, -1),(0, 3 , 5),(0,0,-13)) ((2),(3),(-21))#

And now we can back substitute because we actually have:

#((1, -2, -1),(0, 3 , 5),(0,0,-13)) ((x),(y),(z))= ((2),(3),(-21))#

We start with:

#- 13 z = - 21 implies z = 21/13#

Next:

#3y + 5 z = 3 implies y = (3 - 5z)/(3) = - 22/13#

And finally:

#x - 2y - z = 2 implies x = 2 + 2y + z#

#implies x = 2 - 2* 22/13 + 21/13 = 3/13#

So:

#(x,y,z) = ( 3/13,- 22/13,21/13 )#