Inmathematics, particularlymatrix theory, aband matrix orbanded matrix is asparse matrix whose non-zero entries are confined to a diagonalband, comprising themain diagonal and zero or more diagonals on either side.
Formally, consider ann×n matrixA=(ai,j). If all matrix elements are zero outside a diagonally bordered band whose range is determined by constantsk1 andk2:
then the quantitiesk1 andk2 are called thelower bandwidth andupper bandwidth, respectively.[1] Thebandwidth of the matrix is the maximum ofk1 andk2; in other words, it is the numberk such that if.[2]
Innumerical analysis, matrices fromfinite element orfinite difference problems are often banded. Such matrices can be viewed as descriptions of the coupling between the problem variables; the banded property corresponds to the fact that variables are not coupled over arbitrarily large distances. Such matrices can be further divided – for instance, banded matrices exist where every element in the band is nonzero.
Problems in higher dimensions also lead to banded matrices, in which case the band itself also tends to be sparse. For instance, a partial differential equation on a square domain (using central differences) will yield a matrix with a bandwidth equal to thesquare root of the matrix dimension, but inside the band only 5 diagonals are nonzero. Unfortunately, applyingGaussian elimination (or equivalently anLU decomposition) to such a matrix results in the band being filled in by many non-zero elements.
Band matrices are usually stored by storing the diagonals in the band; the rest is implicitly zero.
For example, atridiagonal matrix has bandwidth 1. The 6-by-6 matrix
is stored as the 6-by-3 matrix
A further saving is possible when the matrix is symmetric. For example, consider a symmetric 6-by-6 matrix with an upper bandwidth of 2:
This matrix is stored as the 6-by-3 matrix:
From a computational point of view, working with band matrices is always preferential to working with similarly dimensionedsquare matrices. A band matrix can be likened in complexity to a rectangular matrix whose row dimension is equal to the bandwidth of the band matrix. Thus the work involved in performing operations such as multiplication falls significantly, often leading to huge savings in terms of calculation time andcomplexity.
As sparse matrices lend themselves to more efficient computation than dense matrices, as well as in more efficient utilization of computer storage, there has been much research focused on finding ways to minimise the bandwidth (or directly minimise the fill-in) by applying permutations to the matrix, or other such equivalence or similarity transformations.[3]
TheCuthill–McKee algorithm can be used to reduce the bandwidth of a sparsesymmetric matrix. There are, however, matrices for which thereverse Cuthill–McKee algorithm performs better. There are many other methods in use.
The problem of finding a representation of a matrix with minimal bandwidth by means of permutations of rows and columns isNP-hard.[4]