SOLUTION: Write a vector equation that is equivalent to the system of equations: 8x +9y -9z = 1 −7x+ 8y -4z=-1 x -3y+z = 2 My book isnt that great and I can not seem to find

Algebra ->  College  -> Linear Algebra -> SOLUTION: Write a vector equation that is equivalent to the system of equations: 8x +9y -9z = 1 −7x+ 8y -4z=-1 x -3y+z = 2 My book isnt that great and I can not seem to find       Log On


   



Question 629331: Write a vector equation
that is equivalent to the system of equations:
8x +9y -9z = 1
−7x+ 8y -4z=-1
x -3y+z = 2
My book isnt that great and I can not seem to find a way to solve this.

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

Below is a problem just like yours with different numbers.  
You can use it as a guide to solve yours.  Yours has this
solution:

(x,y,z) = (-25%2F61, -88%2F61, -117%2F61)

This one has solution (x,y,z) = (15, -49, 27)

 x + 2y + 3z =  -2
 x +  y +  z =  -7
-x +  y + 2z = -10




I will assume you already know how to find the inverse
of a matrix, and how to multiply two matrices. If you don't, 
post again asking how.
 
First we form three matrices, A, X, and B.
 
1. Matrix A is the 3x3 coefficient matrix A, which consists 
of just the three columns of x, y, and z coefficients. in 
that order, but does not contain the column of constants.
 
   A = %28matrix%283%2C3%2C1%2C2%2C3%2C1%2C1%2C1%2C-1%2C1%2C2%29%29. 
 
2. Matrix X is the 3x1 matrix of variables  X = %28matrix%283%2C1%2Cx%2Cy%2Cz%29%29
 
3. Matrix B is the 3x1 matrix, whose only column is the
column of constants:  B = %28matrix%283%2C1%2C-2%2C-7%2C-10%29%29
 
Next we form the matrix equation:
 
                               AX = B
 
or
 

 
To solve the equation
 
                               AX = B
 
we left-multiply both sides by A-1, the inverse of A.
 

                          A-1(AX) = A-1B
 
Then since the associative principle holds for matrix multiplication,
(even though the commutative principle DOES NOT!!!), we can move
the parentheses on the left around the first two matrix factors:
 

                          (A-1A)X = A-1B
 
Now since A-1A = I, where I is the identity matrix, the
above becomes:
 
                              IX = A-1B
 
and by the identity property:
 
                               X = A-1B
 
Performing these operations with the actual matrices we have
the equation AX = B
 

 
Next we find the inverse of A, which is written A-1.
 
A-1 = %28matrix%283%2C3%2C1%2C+-1%2C+-1%2C+-3%2C+5%2C+2%2C+2%2C+-3%2C+-1%29%29%0D%0A
 
Then we indicate the left multiplication of both sides by
A%5E%28-1%29 to get the equation A-1(A*X) = A-1B:
 

 
Next we use the associative principle to move the parentheses so that
they are around the first two factors to get the equation 

                (A-1A)X=A-1B:
 
A%5E%28-1%29 to get the equation (A-1A)X = A-1B:
 

 
When we perform the matrix multiplication we get:



The matrix on the left is the identity matrix

Then when we multiply the identity matrix I by the column matrix of
variables, we just get the matrix of variables, or the 
equation X = A-1B
 
%28matrix%283%2C1%2Cx%2Cy%2Cz%29%29=%28matrix%283%2C1%2C15%2C-49%2C27%29%29

or x=15, y=-49, z=27
 
Edwin