Trisha Shetty (Editor)

Matrix splitting

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In the mathematical discipline of numerical linear algebra, a matrix splitting is an expression which represents a given matrix as a sum or difference of matrices. Many iterative methods (for example, for systems of differential equations) depend upon the direct solution of matrix equations involving matrices more general than tridiagonal matrices. These matrix equations can often be solved directly and efficiently when written as a matrix splitting. The technique was devised by Richard S. Varga in 1960.

Contents

Regular splittings

We seek to solve the matrix equation

where A is a given n × n non-singular matrix, and k is a given column vector with n components. We split the matrix A into

where B and C are n × n matrices. If, for an arbitrary n × n matrix M, M has nonnegative entries, we write M0. If M has only positive entries, we write M > 0. Similarly, if the matrix M1M2 has nonnegative entries, we write M1M2.

Definition: A = BC is a regular splitting of A if and only if B−10 and C0.

We assume that matrix equations of the form

where g is a given column vector, can be solved directly for the vector x. If (2) represents a regular splitting of A, then the iterative method

where x(0) is an arbitrary vector, can be carried out. Equivalently, we write (4) in the form

The matrix D = B−1C has nonnegative entries if (2) represents a regular splitting of A.

It can be shown that if A−1 > 0, then ρ ( D ) < 1, where ρ ( D ) represents the spectral radius of D, and thus D is a convergent matrix. As a consequence, the iterative method (5) is necessarily convergent.

If, in addition, the splitting (2) is chosen so that the matrix B is a diagonal matrix (with the diagonal entries all non-zero, since B must be invertible), then B can be inverted in linear time (see Time complexity).

Matrix iterative methods

Many iterative methods can be described as a matrix splitting. If the diagonal entries of the matrix A are all nonzero, and we express the matrix A as the matrix sum

where D is the diagonal part of A, and U and L are respectively strictly upper and lower triangular n × n matrices, then we have the following.

The Jacobi method can be represented in matrix form as a splitting

The Gauss-Seidel method can be represented in matrix form as a splitting

The method of successive over-relaxation can be represented in matrix form as a splitting

Regular splitting

In equation (1), let

Let us apply the splitting (7) which is used in the Jacobi method: we split A in such a way that B consists of all of the diagonal elements of A, and C consists of all of the off-diagonal elements of A, negated. (Of course this is not the only useful way to split a matrix into two matrices.) We have

A 1 = 1 47 ( 18 13 16 11 21 15 13 12 22 ) , B 1 = ( 1 6 0 0 0 1 4 0 0 0 1 5 ) , D = B 1 C = ( 0 1 3 1 2 1 4 0 1 2 3 5 1 5 0 ) , B 1 k = ( 5 6 3 2 ) .

Since B−10 and C0, the splitting (11) is a regular splitting. Since A−1 > 0, the spectral radius ρ ( D ) < 1. (The approximate eigenvalues of D are λ i 0.4599820 , 0.3397859 , 0.7997679. ) Hence, the matrix D is convergent and the method (5) necessarily converges for the problem (10). Note that the diagonal elements of A are all greater than zero, the off-diagonal elements of A are all less than zero and A is strictly diagonally dominant.

The method (5) applied to the problem (10) then takes the form

The exact solution to equation (12) is

The first few iterates for equation (12) are listed in the table below, beginning with x(0) = (0.0, 0.0, 0.0)T. From the table one can see that the method is evidently converging to the solution (13), albeit rather slowly.

Jacobi method

As stated above, the Jacobi method (7) is the same as the specific regular splitting (11) demonstrated above.

Gauss-Seidel method

Since the diagonal entries of the matrix A in problem (10) are all nonzero, we can express the matrix A as the splitting (6), where

We then have

( D L ) 1 = 1 120 ( 20 0 0 5 30 0 13 6 24 ) , ( D L ) 1 U = 1 120 ( 0 40 60 0 10 75 0 26 51 ) , ( D L ) 1 k = 1 120 ( 100 335 233 ) .

The Gauss-Seidel method (8) applied to the problem (10) takes the form

The first few iterates for equation (15) are listed in the table below, beginning with x(0) = (0.0, 0.0, 0.0)T. From the table one can see that the method is evidently converging to the solution (13), somewhat faster than the Jacobi method described above.

Successive over-relaxation method

Let ω = 1.1. Using the splitting (14) of the matrix A in problem (10) for the successive over-relaxation method, we have

( D ω L ) 1 = 1 12 ( 2 0 0 0.55 3 0 1.441 0.66 2.4 ) , ( D ω L ) 1 [ ( 1 ω ) D + ω U ] = 1 12 ( 1.2 4.4 6.6 0.33 0.01 8.415 0.8646 2.9062 5.0073 ) , ω ( D ω L ) 1 k = 1 12 ( 11 36.575 25.6135 ) .

The successive over-relaxation method (9) applied to the problem (10) takes the form

The first few iterates for equation (16) are listed in the table below, beginning with x(0) = (0.0, 0.0, 0.0)T. From the table one can see that the method is evidently converging to the solution (13), slightly faster than the Gauss-Seidel method described above.

References

Matrix splitting Wikipedia