This chapter provides methods for the solution of systems of simultaneous linear equations, and associated computations. It provides methods for
- – matrix factorizations;
- – solution of linear equations;
- – estimating matrix condition numbers;
- – computing error bounds for the solution of linear equations;
- – matrix inversion;
- – computing scaling factors to equilibrate a matrix.
For a general introduction to the solution of systems of linear equations, you should turn first to (F04 not in this release). The decision trees, in [Decision Trees] in the F04 class Chapter Introduction, direct you to the most appropriate methods in (F04 not in this release) F07 class for solving your particular problem. In particular, (F04 not in this release) F07 class contain Black Box (or driver) methods which enable some standard types of problem to be solved by a call to a single method. Where possible, methods in (F04 not in this release) call F07 class methods to perform the necessary computational tasks.
There are two types of driver methods in this chapter: simple drivers which just return the solution to the linear equations; and expert drivers which also return condition and error estimates and, in many cases, also allow equilibration. The simple drivers for real matrices have names of the form
and for complex matrices have names of the form
The expert drivers for real matrices have names of the form
and for complex matrices have names of the form
The methods in this chapter ( F07 class) handle only dense and band matrices (not matrices with more specialised structures, or general sparse matrices).
The methods in this chapter have all been derived from the LAPACK project (see Anderson et al. (1999)). They have been designed to be efficient on a wide range of high-performance computers, without compromising efficiency on conventional serial machines.
Syntax
C# |
---|
public static class F07 |
Visual Basic |
---|
Public NotInheritable Class F07 |
Visual C++ |
---|
public ref class F07 abstract sealed |
F# |
---|
[<AbstractClassAttribute>] [<SealedAttribute>] type F07 = class end |
Background to the Problems
This section is only a brief introduction to the numerical solution of systems of linear equations. Consult a standard textbook, for example Golub and Van Loan (1996) for a more thorough discussion.
Notation
We use the standard notation for a system of simultaneous linear equations:
where is the coefficient matrix, is the right-hand side, and is the solution. is assumed to be a square matrix of order .
(1) |
If there are several right-hand sides, we write
where the columns of are the individual right-hand sides, and the columns of are the corresponding solutions.
(2) |
We also use the following notation, both here and in the method documents:
a computed solution to , (which usually differs from the exact solution because of round-off error) | |
the residual corresponding to the computed solution | |
the -norm of the vector | |
the -norm of the vector | |
the -norm of the matrix | |
the -norm of the matrix | |
the vector with elements | |
the matrix with elements |
Inequalities of the form are interpreted component-wise, that is for all .
Matrix Factorizations
If is upper or lower triangular, can be solved by a straightforward process of backward or forward substitution.
Otherwise, the solution is obtained after first factorizing , as follows.
General matrices (LU factorization with partial pivoting)
where is a permutation matrix, is lower-triangular with diagonal elements equal to , and is upper-triangular; the permutation matrix (which represents row interchanges) is needed to ensure numerical stability.
Symmetric positive definite matrices (Cholesky factorization)
where is upper triangular and is lower triangular.
Symmetric positive semidefinite matrices (pivoted Cholesky factorization)
where is a permutation matrix, is upper triangular and is lower triangular. The permutation matrix (which represents row-and-column interchanges) is needed to ensure numerical stability and to reveal the numerical rank of .
Symmetric indefinite matrices (Bunch–Kaufman factorization)
where is a permutation matrix, is upper triangular, is lower triangular, and is a block diagonal matrix with diagonal blocks of order or ; and have diagonal elements equal to , and have by unit matrices on the diagonal corresponding to the by blocks of . The permutation matrix (which represents symmetric row-and-column interchanges) and the by blocks in are needed to ensure numerical stability. If is in fact positive definite, no interchanges are needed and the factorization reduces to or with diagonal , which is simply a variant form of the Cholesky factorization.
Solution of Systems of Equations
Given one of the above matrix factorizations, it is straightforward to compute a solution to by solving two subproblems, as shown below, first for and then for . Each subproblem consists essentially of solving a triangular system of equations by forward or backward substitution; the permutation matrix and the block diagonal matrix introduce only a little extra complication:
General matrices ( LU
factorization)
Symmetric positive definite matrices (Cholesky factorization)
Symmetric indefinite matrices (Bunch–Kaufman factorization)
Sensitivity and Error Analysis
Normwise error bounds
Frequently, in practical problems the data and are not known exactly, and it is then important to understand how uncertainties or perturbations in the data can affect the solution.
If is the exact solution to , and is the exact solution to a perturbed problem , then
where is the condition number of defined by
(3) |
In other words, relative errors in or may be amplified in by a factor . [Estimating condition numbers] discusses how to compute or estimate .
Similar considerations apply when we study the effects of rounding errors introduced by computation in finite precision. The effects of rounding errors can be shown to be equivalent to perturbations in the original data, such that and are usually at most , where is the machine precision and is an increasing function of which is seldom larger than (although in theory it can be as large as ).
In other words, the computed solution is the exact solution of a linear system which is close to the original system in a normwise sense.
Estimating condition numbers
The previous section has emphasized the usefulness of the quantity in understanding the sensitivity of the solution of . To compute the value of from equation (3) is more expensive than solving in the first place. Hence it is standard practice to estimate , in either the -norm or the -norm, by a method which only requires additional operations, assuming that a suitable factorization of is available.
The method used in this chapter is Higham's modification of Hager's method (see Higham (1988)). It yields an estimate which is never larger than the true value, but which seldom falls short by more than a factor of (although artificial examples can be constructed where it is much smaller). This is acceptable since it is the order of magnitude of which is important rather than its precise value.
Because is infinite if is singular, the methods in this chapter actually return the reciprocal of .
Scaling and Equilibration
The condition of a matrix and hence the accuracy of the computed solution, may be improved by scaling; thus if and are diagonal matrices with positive diagonal elements, then
is the scaled matrix. A general matrix is said to be equilibrated if it is scaled so that the lengths of its rows and columns have approximately equal magnitude. Similarly a general matrix is said to be row-equilibrated (column-equilibrated) if it is scaled so that the lengths of its rows (columns) have approximately equal magnitude. Note that row scaling can affect the choice of pivot when partial pivoting is used in the factorization of .
A symmetric or Hermitian positive definite matrix is said to be equilibrated if the diagonal elements are all approximately equal to unity.
For further information on scaling and equilibration see Section 3.5.2 of Golub and Van Loan (1996), Section 7.2, 7.3 and 9.8 of Higham (1988) and Section 5 of Chapter 4 of Wilkinson (1965).
Methods are provided to return the scaling factors that equilibrate a matrix for general, general band, symmetric and Hermitian positive definite and symmetric and Hermitian positive definite band matrices.
Componentwise error bounds
A disadvantage of normwise error bounds is that they do not reflect any special structure in the data and – that is, a pattern of elements which are known to be zero – and the bounds are dominated by the largest elements in the data.
Componentwise error bounds overcome these limitations. Instead of the normwise relative error, we can bound the relative error in each component of and :
where the component-wise backward error bound is given by
Methods are provided in this chapter which compute , and also compute a forward error bound which is sometimes much sharper than the normwise bound given earlier:
Care is taken when computing this bound to allow for rounding errors in computing . The norm is estimated cheaply (without computing ) by a modification of the method used to estimate .
Iterative refinement of the solution
If is an approximate computed solution to , and is the corresponding residual, then a procedure for iterative refinement of can be defined as follows, starting with :
- for , until convergence
compute solve compute
In (F04 not in this release), methods are provided which perform this procedure using additional precision to compute , and are thus able to reduce the forward error to the level of machine precision.
The methods in this chapter do not use additional precision to compute , and cannot guarantee a small forward error, but can guarantee a small backward error (except in rare cases when is very ill-conditioned, or when and are sparse in such a way that has a zero or very small component). The iterations continue until the backward error has been reduced as much as possible; usually only one iteration is needed.
Matrix Inversion
It is seldom necessary to compute an explicit inverse of a matrix. In particular, do not attempt to solve by first computing and then forming the matrix-vector product ; the procedure described in [Solution of Systems of Equations] is more efficient and more accurate.
However, methods are provided for the rare occasions when an inverse is needed, using one of the factorizations described in [Matrix Factorizations].
Packed Storage Formats
Methods which handle symmetric matrices are usually designed so that they use either the upper or lower triangle of the matrix; it is not necessary to store the whole matrix. If the upper or lower triangle is stored conventionally in the upper or lower triangle of a two-dimensional array, the remaining elements of the array can be used to store other useful data.
However, that is not always convenient, and if it is important to economize on storage, the upper or lower triangle can be stored in a one-dimensional array of length or a two-dimensional array with elements; in other words, the storage is almost halved.
The one-dimensional array storage format is referred to as packed storage; it is described in [Packed storage]. The two-dimensional array storage format is referred to as Rectangular Full Packed (RFP) format; it is described in [Rectangular Full Packed (RFP) Storage]. They may also be used for triangular matrices.
Methods designed for these packed storage formats perform the same number of arithmetic operations as methods which use conventional storage. Those using a packed one-dimensional array are usually less efficient, especially on high-performance computers, so there is then a trade-off between storage and efficiency. The RFP methods are as efficient as for conventional storage, although only a small subset of methods use this format.
Band and Tridiagonal Matrices
A band matrix is one whose nonzero elements are confined to a relatively small number of subdiagonals or superdiagonals on either side of the main diagonal. A tridiagonal matrix is a special case of a band matrix with just one subdiagonal and one superdiagonal. Algorithms can take advantage of bandedness to reduce the amount of work and storage required. The storage scheme used for band matrices is described in [Band storage].
The factorization for general matrices, and the Cholesky factorization for symmetric and Hermitian positive definite matrices both preserve bandedness. Hence methods are provided which take advantage of the band structure when solving systems of linear equations.
The Cholesky factorization preserves bandedness in a very precise sense: the factor or has the same number of superdiagonals or subdiagonals as the original matrix. In the factorization, the row-interchanges modify the band structure: if has subdiagonals and superdiagonals, then is not a band matrix but still has at most nonzero elements below the diagonal in each column; and has at most superdiagonals.
The Bunch–Kaufman factorization does not preserve bandedness, because of the need for symmetric row-and-column permutations; hence no methods are provided for symmetric indefinite band matrices.
The inverse of a band matrix does not in general have a band structure, so no methods are provided for computing inverses of band matrices.
Block Partitioned Algorithms
Many of the methods in this chapter use what is termed a block partitioned algorithm. This means that at each major step of the algorithm a block of rows or columns is updated, and most of the computation is performed by matrix-matrix operations on these blocks. The matrix-matrix operations are performed by calls to the Level 3 BLAS
(see F06 class),
which are the key to achieving high performance on many modern computers. See Golub and Van Loan (1996) or Anderson et al. (1999) for more about block partitioned algorithms.
The performance of a block partitioned algorithm varies to some extent with the block size – that is, the number of rows or columns per block. This is a machine-dependent parameter, which is set to a suitable value when the library is implemented on each range of machines. You do not normally need to be aware of what value is being used. Different block sizes may be used for different methods. Values in the range to are typical.
On some machines there may be no advantage from using a block partitioned algorithm, and then the methods use an unblocked algorithm (effectively a block size of ), relying solely on calls to the Level 2 BLAS
(see F06 class
again).
The only situation in which you need some awareness of the block size is when it affects the amount of workspace to be supplied to a particular method. This is discussed in [Length of work arrays].
Mixed Precision LAPACK Routines
Some LAPACK routines use mixed precision arithmetic in an effort to solve problems more efficiently on modern hardware. They work by converting a double precision problem into an equivalent single precision problem, solving it and then using iterative refinement in double precision to find a full precision solution to the original problem. The method may fail if the problem is too ill-conditioned to allow the initial single precision solution, in which case the methods fall back to solve the original problem entirely in double precision. The vast majority of problems are not so ill-conditioned, and in those cases the technique can lead to significant gains in speed without loss of accuracy. This is particularly true on machines where double precision arithmetic is significantly slower than single precision.
References
Anderson E, Bai Z, Bischof C, Blackford S, Demmel J, Dongarra J J, Du Croz J J, Greenbaum A, Hammarling S, McKenney A and Sorensen D (1999) LAPACK Users' Guide (3rd Edition) SIAM, Philadelphia
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Higham N J (1988) Algorithm 674: Fortran codes for estimating the one-norm of a real or complex matrix, with applications to condition estimation ACM Trans. Math. Software 14 381–396
Wilkinson J H (1965) The Algebraic Eigenvalue Problem Oxford University Press, Oxford