A matrix multiplied by it's inverse is the identity matrix, right?

krtica
Messages
50
Reaction score
0
Matrix A= 2x2, R1= -1, -1, R2= -7, 3
Matrix b= 2x2, R1= 1,0, R2= 0, 1

A*?=b
____________

To solve, I put ? on the one side of the equation as ?=A^(-1)b. My answer is then just the inverse of A, because what is multiplied by the identity matrix is itself. It is shown to be incorrect.

?=2x2, R1= -3, -1, R2= -7, -1


Please help! I would like this to become more intuitive.
Also, is there a way to format matrices on the forum?
 
Physics news on Phys.org
How did you calculate the inverse? The matrix you wrote for ? isn't the inverse of A.
 
You just forgot to divide by the determinant of A when you calculated the inverse. You can click on the equation below to see how to write a matrix in tex.

A^{-1}=\left [<br /> \begin{array}{cc}<br /> -\frac 3 4&amp;-\frac 1 4\\<br /> <br /> -\frac 7 4&amp;-\frac 1 4<br /> <br /> \end{array}<br /> \right ]
 
Thank you for your help.

I did forget to divide the matrix by its determinate, 1/[ad-bc]. It would then be my previous answer divided by -1/10, right?

It turned up incorrect, still. I also tried your answer, but still the same response.
 
krtica said:
Thank you for your help.

I did forget to divide the matrix by its determinate, 1/[ad-bc]. It would then be my previous answer divided by -1/10, right?

It turned up incorrect, still. I also tried your answer, but still the same response.

The determinant is -10, but you don't "divide by -1/10". You divide by -10. So you should get

A^{-1} = -\frac {1} {10}\left[ \begin{array}{cc}<br /> 3&amp;1\\<br /> 7&amp;-1<br /> <br /> \end{array}<br /> \right ]
 
That is what I meant. The answer is still wrong.
 
krtica said:
That is what I meant. The answer is still wrong.

<br /> A^{-1} = -\frac {1} {10}\left[ \begin{array}{cc}<br /> 3&amp;1\\<br /> 7&amp;-1<br /> <br /> \end{array}<br /> \right ]<br />

is the correct inverse. If you are trying to solve a system like

Ax = b

where x and b are column vectors then the solution will be

x = A-1b
 
Are you sure you're using the same matrix as LCKurtz? Your original inverse not only was missing the determinant factor but had the wrong sign on one of the elements as well.
 
Back
Top