A block matrix, also known as a partition matrix, is a matrix whose elements have been partitioned into separate matrices. For example (Characters in bold are matrices):

|0 2 3 3 3|                                                   A = |0 2|
|2 0 3 3 3|                                                       |2 0|
|1 1 4 0 0| can be rewritten as the block matrix |A B|, where 
|1 1 0 4 0|                                      |C D|        B = |3 3 3|
|1 1 0 0 4|                                                       |3 3 3|
 
                                                              C = |1 1|
                                                                  |1 1|
                                                                  |1 1|

                                                              D = |4 0 0|
                                                                  |0 4 0|
                                                                  |0 0 4|

A block diagonal matrix or diagonal block matrix is a block matrix where each matrix that is on the main diagonal is square and all of the matrices that are not on the main diagonal are zero matrices. For example:

|2 1 0 0 0 0|                             |2 1 0|
|0 2 1 0 0 0|         |A1 0 0|       A1 = |0 2 1|
|0 0 2 0 0 0| is also |0 A2 0| where      |0 0 2|
|0 0 0 5 0 0|         |0 0 A3|       
|0 0 0 0 4 1|                        A2 = |5|
|0 0 0 0 0 4|
                                     A3 = |4 1|
                                          |0 4|

Block matrices are useful for organizing large quantities of data into a form that is easily manipulated and understood. The previous example was a matrix of Jordan form, which is useful computationally, but there are many other applications as well. Whenever it is necessary to perform linear mappings with groups of basis vectors, this is the most conceptually simple way to do it. Block matrices also have some very nice properties. For example, block matrix multiplication is identical to normal matrix multiplication (we assume here that the corresponding block matrices have the same shapes and that the matrices along the diagonal are square):

|A1 B1||A2 B2| = |A1A2+B1C2 A1B2+B1D2|
|C1 D1||C2 D2|   |C1A2+D1C2 C1B2+D1D2|

Block matrices can also be decomposed and inverted for dramatic effect. Bam!

|A B| = | I   0||A     0  ||I A-1B|
|C D|   |CA-1 I||0 D-CA-1B|| 0  I |

The matrix D-CA-1B is called the Schur complement of A, denoted SA. Alternatively, the matrix can be decomposed using the Schur complement of D (A-BD-1C), which will be left as an exercise for the reader. These processes assume that A and D, respectively, are invertible.

Given |A B| = | I   0||A  0||I A-1B|,
      |C D|   |CA-1 I||0 SA|| 0  I |

|A B|-1 = |I -A-1B||A-1 0 ||  I   0|
|C D|     |0   I  ||0 SA-1||-CA-1 I|

        = |A-1+A-1BSA-1CA-1 -A-1BSA-1|
          |  -SA-1CA-1        SA-1  |


Sources:
Eric W. Weisstein et al. "Block Matrix." From MathWorld--A Wolfram Web Resource.
http://mathworld.wolfram.com/BlockMatrix.html
http://en.wikipedia.org/wiki/Block_structure
http://www-ccrma.stanford.edu/~jos/lattice/Block_matrix_decompositions.html

Log in or register to write something here or to contact authors.