SOLUTION: I have a Matrix and I have to invert this matrix: | 3 2 0| |-3 -4 5| | 3 1 -1| Step by step.

Algebra.Com
Question 203017: I have a Matrix and I have to invert this matrix:
| 3 2 0|
|-3 -4 5|
| 3 1 -1|
Step by step.

Answer by jsmallt9(3758)   (Show Source): You can put this solution on YOUR website!
One way to do this is:
  1. Insert the identity matrix in your matrix as follows:
    |  3  2  0  1  0  0 |
    | -3 -4  5  0  1  0 |
    |  3  1 -1  0  0  1 |
    
  2. Use elementary row operations to transform this matrix so that the left half become the identity matrix. When this is complete the right half of the matrix will be the inverse you are seeking.

The steps I would use:
Add the first row to the second row and the negative of the first row to the third row:
|  3  2  0  1  0  0 |
|  0 -2  5  1  1  0 |
|  0 -1 -1 -1  0  1 |

Add the second row to the first row and -1/2 the second row to the third row:
|  3  0     5     2     1  0 |
|  0 -2     5     1     1  0 |
|  0  0  -7/2  -3/2  -1/2  1 |

Add 10/7 of the third row to both the first and second rows:
|  3  0     0  -1/7   2/7  10/7 |
|  0 -2     0  -8/7   2/7  10/7 |
|  0  0  -7/2  -3/2  -1/2   1   |

Multiply the first row by 1/3, the second row by -1/2 and the third row by -2/7:
|  1  0  0  -1/21   2/21   10/21 |
|  0  1  0   4/7   -1/7    -5/7  |
|  0  0  1   3/7    1/7    -2/7  |

So your inverse matrix is:
|  -1/21   2/21   10/21 |
|   4/7   -1/7    -5/7  |
|   3/7    1/7    -2/7  |


RELATED QUESTIONS

I have worked out Eigenvalues of the following matrix 1 -1 2 0 2 0 3 -3 2 They... (answered by robertb)
Gauss Jordan...Please Help A system of three linear equations in the variables x,y and (answered by fractalier)
Invert the matrix by computing the adjoint matrix and the determinant: -1 1 3 0 0 (answered by mathie123)
Hi! I have a question about solving systems using inverse matrix. (x) (-2 (answered by jim_thompson5910)
SOLVE THE SYSTEM USING THE GAUSS-JORDAN METHOD PROBLEM: x-3y= 3 2x-5y= 4 (answered by stanbon)
Hi all, I have a Matrix problem that I am not quite sure of how to solve. For the given... (answered by Alan3354)
Let A= [1 2 3 5;2 4 8 12;3 6 7 13] I have already reduced the matrix to [1 2 3 5;0 0 1... (answered by Edwin McCravy)
Step by step solution using Gauss method of this linear system: {{{ x - 4y = 11 }}}... (answered by MathLover1)
i have to find the rule for this step 1= 24 step 2= 22 step 3= 20 step 4= 18 step... (answered by Edwin McCravy)