Block matrix


In mathematics, a block matrix or a partitioned matrix is a matrix that is interpreted as having been broken into sections called blocks or submatrices. Intuitively, a matrix interpreted as a block matrix can be visualized as the original matrix with a collection of horizontal and vertical lines, which break it up, or partition it, into a collection of smaller matrices. Any matrix may be interpreted as a block matrix in one or more ways, with each interpretation defined by how its rows and columns are partitioned.
This notion can be made more precise for an by matrix by partitioning into a collection, and then partitioning into a collection. The original matrix is then considered as the "total" of these groups, in the sense that the entry of the original matrix corresponds in a 1-to-1 way with some offset entry of some, where and.
Block matrix algebra arises in general from biproducts in categories of matrices.

Example

The matrix
can be partitioned into four 2×2 blocks
The partitioned matrix can then be written as

Block matrix multiplication

It is possible to use a block partitioned matrix product that involves only algebra on submatrices of the factors. The partitioning of the factors is not arbitrary, however, and requires "conformable partitions" between two matrices and such that all submatrix products that will be used are defined. Given an matrix with row partitions and column partitions
and a matrix with row partitions and column partitions
that are compatible with the partitions of, the matrix product
can be formed blockwise, yielding as an matrix with row partitions and column partitions. The matrices in the resulting matrix are calculated by multiplying:
Or, using the Einstein notation that implicitly sums over repeated indices:

Block matrix inversion

If a matrix is partitioned into four blocks, it can be inverted blockwise as follows:
where A, B, C and D have arbitrary size.
Equivalently,
Here, D and ABD−1C must be invertible.

Block diagonal matrices

A block diagonal matrix is a block matrix that is a square matrix such that the main-diagonal blocks are square matrices and all off-diagonal blocks are zero matrices. That is, a block diagonal matrix A has the form
where Ak is a matrix for all k = 1,..., n. In other words, matrix A is the direct sum of A1,..., An. It can also be indicated as A1A2 ⊕ ... ⊕ An or diag . Any square matrix can trivially be considered a block diagonal matrix with only one block.
For the determinant and trace, the following properties hold
A block diagonal matrix is invertible if and only if each of its main-diagonal blocks are invertible, and in this case its inverse is another block diagonal matrix given by
The eigenvalues and eigenvectors of are simply those of and and... and combined.

Block tridiagonal matrices

A block tridiagonal matrix is another special block matrix, which is just like the block diagonal matrix a square matrix, having square matrices in the lower diagonal, main diagonal and upper diagonal, with all other blocks being zero matrices. It is essentially a tridiagonal matrix but has submatrices in places of scalars. A block tridiagonal matrix A has the form
where Ak, Bk and Ck are square sub-matrices of the lower, main and upper diagonal respectively.
Block tridiagonal matrices are often encountered in numerical solutions of engineering problems. Optimized numerical methods for LU factorization are available and hence efficient solution algorithms for equation systems with a block tridiagonal matrix as coefficient matrix. The Thomas algorithm, used for efficient solution of equation systems involving a tridiagonal matrix can also be applied using matrix operations to block tridiagonal matrices.

Block Toeplitz matrices

A block Toeplitz matrix is another special block matrix, which contains blocks that are repeated down the diagonals of the matrix, as a Toeplitz matrix has elements repeated down the diagonal. The individual block matrix elements, Aij, must also be a Toeplitz matrix.
A block Toeplitz matrix A has the form

Block transpose

A special form of matrix transpose can also be defined for block matrices, where individual blocks are reordered but not transposed. Let be a block matrix with blocks, the block transpose of is the block matrix with blocks.
As with the conventional trace operator, the block transpose is a linear mapping such that. However in general the property does not hold unless the blocks of and commute.

Direct sum

For any arbitrary matrices A and B, we have the direct sum of A and B, denoted by A B and defined as
For instance,
This operation generalizes naturally to arbitrary dimensioned arrays.
Note that any element in the direct sum of two vector spaces of matrices could be represented as a direct sum of two matrices.

Direct product

Application

In linear algebra terms, the use of a block matrix corresponds to having a linear mapping thought of in terms of corresponding 'bunches' of basis vectors. That again matches the idea of having distinguished direct sum decompositions of the domain and range. It is always particularly significant if a block is the zero matrix; that carries the information that a summand maps into a sub-sum.
Given the interpretation via linear mappings and direct sums, there is a special type of block matrix that occurs for square matrices. For those we can assume an interpretation as an endomorphism of an n-dimensional space V; the block structure in which the bunching of rows and columns is the same is of importance because it corresponds to having a single direct sum decomposition on V. In that case, for example, the diagonal blocks in the obvious sense are all square. This type of structure is required to describe the Jordan normal form.
This technique is used to cut down calculations of matrices, column-row expansions, and many computer science applications, including VLSI chip design. An example is the Strassen algorithm for fast matrix multiplication, as well as the Hamming encoding for error detection and recovery in data transmissions.