Block Matrices
Block Matrices
Properties of Matrices
Block Matrices
It is often convenient to partition a matrix M into smaller matrices called
blocks, like so:
1 2 3 1 !
4 5 6 0 A B
M = =
7 8 9 1 C D
0 1 2 0
1 2 3 1
Here A = 4 5 6, B = 0, C = 0 1 2 , D = (0).
7 8 9 1
• The blocks
! of a block matrix must fit
! together to form a rectangle. So
B A C B
makes sense, but does not.
D C D A
1
Computing the individual blocks, we get:
30 37 44
A2 + BC = 66 81 96
102 127 152
4
AB + BD = 10
16
18
CA + DC = 21
24
CB + D2 = (2)
4 10 16 2
This is exactly M 2 .
2
Then:
! ! !
1 t 1 2t 1 3t
f (M ) = −2 +3
0 1 0 1 0 1
!
2 6t
=
0 2
Trace
Matrices contain a great deal of information, so finding ways to extract
essential information is useful.
3
Definition The trace of a square matrice M = (mij ) is the sum of its
diagonal entries.
n
X
tr M = mii
i=1
Example
2 7 6
tr 9 5 1 = 2 + 5 + 8 = 15
4 3 8
4
Linear Systems Redux Recall that we can view a linear system as a ma-
trix equation
M X = V,
with M an r × k matrix of coefficients, x a k × 1 matrix of unknowns, and V
an r × 1 matrix of constants. If M is a square matrix, then the number of
equations (r) is the same as the number of unknowns (k), so we have hope
of finding a single solution.
Above we discussed functions of matrices. An extremely useful function
1 1 1
would be f (M ) = M , where M M = I. If we could compute M , then we
1
would multiply both sides of the equation M X = V by M to obtain the
1
solution immediately: X = M V.
Clearly, if the linear system has no solution, then there can be no hope of
1
finding M , since if it existed we could find a solution. On the other hand, if
1
the system has more than one solution, it also seems unlikely that M would
1
exist, since X = M V yields only a single solution.
1
Therefore M only sometimes exists. It is called the inverse of M , and is
usually written M −1 .
References
Wikipedia:
• Block Matrix
Review Questions
!
1 2 0
1. Let A = . Find AAT and AT A. What can you say about
3 −1 4
matrices M M T and M T M in general? Explain.
5
!
0 λ
• A=
0 0
!
a b
3. Suppose ad − bc 6= 0, and let M = .
c d
0 0 0 0 0 0 0 3
and then multiply blocks to compute M 2 .