Friday, June 22, 2018

linear algebra - Finding characteristic matrix of a triangle matrix



I came to this stage when I was reading a Linear algebra text :




Suppose M is a block triangular matrix, say M=(A1B0A2) where A1 and A2 are square matrices. Then the characteristic matrix of M,
(tIA1B0tIA2)

is also a block triangular matrix with diagonal blocks tIA1 and tIA2. Thus by Theorem 7.12,
|tIM|=|tIA1B0tIA2|=|tIA1||tIA2|.
That is the characteristic polynomial of M is the product of the characteristic polynomials of the diagonal blocks A1 and A2.





tIM gives a matrix with components :




  • tIA1 (makes sense)

  • tIA2 (even that I got)



But why is the top right component B? Why not tIB? What am I missing?



Answer



Note that M=(A1B0A2)


writing the identity with correspoding blocks: Suppose A1 is a n1×n1-matrix and A2 is a n2×n2-matrix. Then in tIM the identity is a (n1+n2)×(n1+n2)-matrix. We have
In1+n2=(In100In2)

as the identity does only have off-diagonal entries and the off-diagonal blocks do not contain diagonal-elements. Hence
tIM=t(In100In2)(A1B0A2)=(tIA1B0tIA2).


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...