Hierarchical matrix


In numerical mathematics, hierarchical matrices
are used as data-sparse approximations of non-sparse matrices.
While a sparse matrix of dimension can be represented efficiently in units of storage
by storing only its non-zero entries, a non-sparse matrix would require units of storage, and using this type
of matrices for large problems would therefore be prohibitively expensive in terms of storage and computing time.
Hierarchical matrices provide an approximation requiring only units of storage, where is a
parameter controlling the accuracy of the approximation.
In typical applications, e.g., when discretizing integral equations
preconditioning the resulting systems of linear equations
or solving elliptic partial differential equations
a rank proportional to with a small constant is sufficient to ensure an
accuracy of.
Compared to many other data-sparse representations of non-sparse matrices, hierarchical matrices offer a major advantage:
the results of matrix arithmetic operations like matrix multiplication, factorization or inversion can be approximated
in operations, where

Basic idea

Hierarchical matrices rely on local low-rank approximations:
let be index sets, and let denote the matrix we have to approximate.
In many applications, we can find subsets such that
can be approximated by a rank- matrix.
This approximation can be represented in factorized form with factors
While the standard representation of the matrix requires units of storage,
the factorized representation requires only units.
If is not too large, the storage requirements are reduced significantly.
In order to approximate the entire matrix, it is split into a family of submatrices.
Large submatrices are stored in factorized representation, while small submatrices are stored in standard representation
in order to improve efficiency.
Low-rank matrices are closely related to degenerate expansions used in panel clustering and the fast multipole method
to approximate integral operators.
In this sense, hierarchical matrices can be considered the algebraic counterparts of these techniques.

Application to integral operators

Hierarchical matrices are successfully used to treat integral equations, e.g., the single and double layer potential operators
appearing in the boundary element method.
A typical operator has the form
The Galerkin method leads to matrix entries of the form
where and are families of finite element basis functions.
If the kernel function is sufficiently smooth, we can approximate it by polynomial interpolation to obtain
where is the family of interpolation points and
is the corresponding family of Lagrange polynomials.
Replacing by yields an approximation
with the coefficients
If we choose and use the same interpolation points for all, we obtain
Obviously, any other approximation separating the variables and, e.g., the multipole expansion,
would also allow us to split the double integral into two single integrals and thus arrive at a similar factorized low-rank matrix.
Of particular interest are cross approximation techniques
that use only the entries of the original matrix to construct a low-rank approximation.

Application to elliptic partial differential equations

Since the solution operator of an elliptic partial differential equation can be expressed as an integral operator involving
Green's function, it is not surprising that the inverse of the stiffness matrix arising from the finite element method
and spectral method
can be approximated by a hierarchical matrix.
Green's function depends on the shape of the computational domain, therefore it is usually not known.
Nevertheless, approximate arithmetic operations can be employed to compute an approximate inverse without knowing the
function explicitly.
Surprisingly, it is possible to prove that the inverse can be approximated even if
the differential operator involves non-smooth coefficients and Green's function is therefore not smooth.

Arithmetic operations

The most important innovation of the hierarchical matrix method is the development of efficient algorithms for performing
matrix arithmetic operations on non-sparse matrices, e.g., to compute approximate inverses, LU decompositions
and solutions to matrix equations.
The central algorithm is the efficient matrix-matrix multiplication, i.e., the computation of
for hierarchical matrices and a scalar factor.
The algorithm requires the submatrices of the hierarchical matrices to be organized in a block tree structure and takes
advantage of the properties of factorized low-rank matrices to compute the updated in
operations.
Taking advantage of the block structure, the inverse can be computed by using recursion to compute inverses and
Schur complements of diagonal blocks and combining both using the matrix-matrix multiplication.
In a similar way, the LU decomposition
can be constructed using only recursion and multiplication.
Both operations also require operations.

H2-matrices

In order to treat very large problems, the structure of hierarchical matrices can be improved:
H2-matrices
replace the general low-rank structure of the blocks by a hierarchical representation closely related to the
fast multipole method in order to reduce the storage complexity to.
In the context of boundary integral operators, replacing the fixed rank by block-dependent ranks
leads to approximations that preserve the rate of convergence of the underlying boundary element method
at a complexity of
Arithmetic operations like multiplication, inversion, and Cholesky or LR factorization of H2-matrices
can be implemented based on two fundamental operations: the matrix-vector multiplication with submatrices
and the low-rank update of submatrices.
While the matrix-vector multiplication is straightforward, implementing efficient low-rank updates with
adaptively optimized cluster bases poses a significant challenge.

Literature

Software

is a C software library implementing the most important algorithms for hierarchical and -matrices.
is a C++ software library that can be downloaded for educational purposes.
is an implementation of the core hierarchical matrix algorithms for commercial applications.
is an open source implementation of hierarchical matrix algorithms intended for research and teaching.
is a repository containing a list of other H-Matrices implementations.
is a Julia package implementing hierarchical matrices.