SOLUTION: I need help in completing the problem. I need help on starting the problem after I set it up as an augmented matrix. It would be great if I could get it step-by-step: 2x+6y+8z=5; -

Algebra ->  Matrices-and-determiminant -> SOLUTION: I need help in completing the problem. I need help on starting the problem after I set it up as an augmented matrix. It would be great if I could get it step-by-step: 2x+6y+8z=5; -      Log On


   



Question 153430This question is from textbook Advanced Mathematical Concepts
: I need help in completing the problem. I need help on starting the problem after I set it up as an augmented matrix. It would be great if I could get it step-by-step: 2x+6y+8z=5; -2x+9y-12z=-1; 4x+6y-4z=3. Thanks a lot! This question is from textbook Advanced Mathematical Concepts

Found 2 solutions by stanbon, Edwin McCravy:
Answer by stanbon(75887) About Me  (Show Source):
You can put this solution on YOUR website!
2x+6y+8z =5
-2x+9y-12z=-1
4x+6y-4z =3
--------------------
+2...+6...+8....+5
-2...+9...-12...-1
+4...+6...-4....+3
-------------------------
Add 1st to 2nd to get:
+2...+6...+8....+5
+0...+15..-4....+4
+4...+6...-4....+3
------------------------
Add -2 times the 1st to the 3rd to get:
+2...+6...+8....+5
+0...+15..-4....+4
+0...-6..-20....-7
-----------------------
Add 3rd to 1st to get:
+2...+0...-12...-2
+0...+15..-4....+4
+0...-6..-20....-7
--------------------
Divide thru equation 3 by -6:
+2...+0...-12...-2
+0...+15..-4....+4
+0...+1..+10/3..+7/6
--------------------
Add -15 time 3rd to the 2nd to get:
+2...+0...-12...-2
+0...+0...-54...-13.5
+0...+1..+10/3..-7/6
------------------------
Solve the 2nd equation for z:
-54z = -13.5
z = 0.25 or 1/4
---------------------
Substitute z = 1/4 into the 3rd equation to solve for "y":
y +(10/3)(1/4) = -7/6
y + (5/6) = -7/6
y = -2
------------------
Substitute z = 1/4 into the 1st equation to solve for "x"
2x -12*(1/4) = -2
2x - 3 = -2
2x = 1
x = 1/2
----------------
Final solution:
x = 1/2
y = -2
z = 1/4
===============
Cheers,
Stan H.






Answer by Edwin McCravy(20060) About Me  (Show Source):
You can put this solution on YOUR website!
Stanbon's solution has a mistake.
Edwin's Solution:


system%282x%2B6y%2B8z=5%2C-2x%2B9y-12z=-1%2C4x%2B6y-4z=3%29 

 [ 2   6   8 |  5]
 [-2   9 -12 | -1]
 [ 4   6  -4 |  3]

We must get 0's where the -2, 
the 4, and the 6 are now. We 
make three 0's in the lower 
left hand corner

The top row will never change. 
The other two will. To get a 0 
where the -2 is, We multiply 1 
times the first row and add it 
to 1 times the 2nd row. It's a 
good idea to put what you're
going to multiply a row by out
to the left of the row, even 
when it is just 1, like this:

1[ 2   6   8 |  5]
1[-2   9 -12 | -1]
 [ 4   6  -4 |  3]

The next matrix is then

 [ 2   6   8 |  5]
 [ 0  15  -4 |  4]
 [ 4   6  -4 |  3]

To get a 0 where the 4 is, 
We multiply -2 times the first 
row and add it to 1 times the 
3rd row. 

-2[ 2   6   8 |  5]
  [ 0  15  -4 |  4]
 1[ 4   6  -4 |  3]

  [ 2   6   8 |  5]
  [ 0  15  -4 |  4]
  [ 0  -6 -20 | -7]

To get a 0 where the -6 is, 
we notice that the least common
multiple of 15 and 6 is 30.  So,
We multiply 2 times the second 
row and add it to 5 times the 
3rd row.

  [ 2   6   8 |  5]
 2[ 0  15  -4 |  4]
 5[ 0  -6 -20 | -7]

We get this:

  [ 2   6    8|  5]
  [ 0  15   -4|  4]
  [ 0   0 -108|-27]

Now that we have three 0's in the
lower left corner, we go back to
a system of equations:

system%282x%2B6y%2B8z=5%2C15y-4z=4%2C-108z=-27+%29

Start at the bottom, and go back up.
This is called back-substitution.
Start with the bottom equation, solve for
z:

-108z=-27
z=%28-27%29%2F%28-108%29
z=1%2F4

Substitute 1%2F4 for z in the
second equation:

15y-4z=4
15y-4%281%2F4%29=4
15y-1=4
15y=+5
y=5%2F15
y=1%2F3

Finally sibstitute both 1%2F4 for z
and 1%2F3 for y

2x%2B6y%2B8z=5
2x%2B6%281%2F3%29%2B8%281%2F4%29=5
2x%2B2%2B2=5
2x%2B4=5
2x=1
x=1%2F2

So the solution is

(x,y,z)=(1%2F2,1%2F3,1%2F4)

Edwin