Solving for Values in an Inverse Partitioned Matrix

  • Thread starter Thread starter BraedenP
  • Start date Start date
  • Tags Tags
    Inverse Matrix
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 4K views
BraedenP
Messages
94
Reaction score
0

Homework Statement


Given partitioned matrices:
[tex]A=\begin{bmatrix}<br /> I & 0 & 0\\ <br /> C & 0 & 0\\ <br /> A & B & I<br /> \end{bmatrix}<br /> ,A^{-1}=\begin{bmatrix}<br /> I & 0 & 0\\<br /> Z & I & 0\\<br /> X & Y & I<br /> \end{bmatrix}[/tex]

Solve for matrices Z, X, and Y

Homework Equations


N/A

The Attempt at a Solution



I started by equating the product of those partitioned matrices to a partitioned identity matrix:

[tex]\begin{bmatrix}<br /> I & 0 & 0\\ <br /> C & 0 & 0\\ <br /> A & B & I<br /> \end{bmatrix}<br /> \begin{bmatrix}<br /> I & 0 & 0\\<br /> Z & I & 0\\<br /> X & Y & I<br /> \end{bmatrix}<br /> = \begin{bmatrix}<br /> I & 0 & 0\\<br /> 0 & I & 0\\<br /> 0 & 0 & I\end{bmatrix}[/tex]

Then My multiplying out the entries and comparing them to the expected corresponding entries in the identity matrix, I generated some equations:

[tex]C+Z=0 \to Z=-C[/tex]

[tex]A+BZ+X=0 \to X=-B(-C)-A \to X=BC-A[/tex]

[tex]B+Y=0 \to B=-Y[/tex]

Therefore:
[tex]Z=-C, X=BC-A, B=-Y[/tex]

Am I right in my method, or am I out to lunch? Hopefully I broke no rules in my multiplication of the sub-matrices..

Any advice would be appreciated.
 
Physics news on Phys.org
Looks good, but you probably want to express [tex]Y = -B[/tex] in case you have a pedantic grader that might take points off. Also you have a typo in the center element of the original matrix (center element is I instead of 0), but you seem to have used the correct matrix for your calculation.
 
fzero said:
Looks good, but you probably want to express [tex]Y = -B[/tex] in case you have a pedantic grader that might take points off. Also you have a typo in the center element of the original matrix (center element is I instead of 0), but you seem to have used the correct matrix for your calculation.

Oops! Yeah, you're right -- it is a typo. I used I in my calculation.

And yep, you're correct. He'll want it as [tex]Y=-B[/tex].. Not sure why I changed it around.

Thanks a heap!