SOLUTION: Solving linear systems with 3 variables 4x - 3y = 1 2y - 3z = 2 3x + 2z = 3

Algebra ->  Coordinate Systems and Linear Equations  -> Lessons -> SOLUTION: Solving linear systems with 3 variables 4x - 3y = 1 2y - 3z = 2 3x + 2z = 3       Log On


   



Question 1087439: Solving linear systems with 3 variables
4x - 3y = 1
2y - 3z = 2
3x + 2z = 3

Found 2 solutions by Fombitz, Edwin McCravy:
Answer by Fombitz(32388) About Me  (Show Source):
You can put this solution on YOUR website!
A=%28matrix%283%2C3%2C%0D%0A4%2C-3%2C0%2C%0D%0A0%2C2%2C-3%2C%0D%0A3%2C0%2C2%29%29
abs%28A%29=43
.
.
.
A%5Bx%5D=%28matrix%283%2C3%2C%0D%0A1%2C-3%2C0%2C%0D%0A2%2C2%2C-3%2C%0D%0A3%2C0%2C2%29%29
abs%28A%5Bx%5D%29=43
.
.
.
A%5By%5D=%28matrix%283%2C3%2C%0D%0A4%2C1%2C0%2C%0D%0A0%2C2%2C-3%2C%0D%0A3%2C3%2C2%29%29
abs%28A%5By%5D%29=43
.
.
.
A%5Bz%5D=%28matrix%283%2C3%2C%0D%0A4%2C-3%2C1%2C%0D%0A0%2C2%2C2%2C%0D%0A3%2C0%2C3%29%29
abs%28A%5Bz%5D%29=0
.
.
.
So,
x=abs%28A%5Bx%5D%29%2Fabs%28A%29=43%2F43=1
y=abs%28A%5By%5D%29%2Fabs%28A%29=43%2F43=1
z=abs%28A%5Bz%5D%29%2Fabs%28A%29=0

Answer by Edwin McCravy(20056) About Me  (Show Source):
You can put this solution on YOUR website!


He did it my Cramer's rule (determinants). I didn't 
know if you'd had that or just the elimination method.
So I thought I'd do it by the first method that's
usually taught.


Line them up so that like letters, signs, 
and equal signs, and numbers line up
vertically.

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

The idea is to reduce that to a linear system with
only 2 variables.

Notice that one of the variables has already been 
eliminated in all three.  Pick one of the three
to be one of the equations in the system of 2
equations with 2 variables.  It doesn't matter 
which of the three you pick.  Say we pick the 
third one, from which y has already been 
eliminated.

 3x + 2z = 3

Now even though a variable has been eliminated from
the other two, you still must eliminate the same
variable from the other two that is already eliminated 
in the one we picked, 3x + 2z = 3.  So we eliminate
y from the other two equations:


4x - 3y      = 1
     2y - 3z = 2
 
To eliminate y from them, we multiply the first
equation by 2 and the second one by 3, and then
add them:

8x - 6y      = 2
     6y - 9z = 6
----------------
8x      - 9z = 8 

So the linear system in 2 variables is

3x + 2z = 3
8x - 9z = 8

We can eliminate z by multiplying the first one just
above by 9 and the second one just above by 2
and adding:

27x + 18z = 27
16x - 18z = 16
--------------
43x       = 43
        x = 1

Substitute x = 1 in

  3x + 2z = 3
3(1) + 2z = 3
   3 + 2z = 3
       2z = 0
        z = 0

Substitute x = 1 in the first original 
equation:

  4x - 3y = 1
4(1) - 3y = 1
   4 - 3y = 1
      -3y = -3
        y = 1 

Answer (x,y,z) = (1,1,0)

Edwin