In
numerical linear algebra
Numerical linear algebra, sometimes called applied linear algebra, is the study of how matrix operations can be used to create computer algorithms which efficiently and accurately provide approximate answers to questions in continuous mathematics ...
, the Gauss–Seidel method, also known as the Liebmann method or the method of successive displacement, is an
iterative method
In computational mathematics, an iterative method is a mathematical procedure that uses an initial value to generate a sequence of improving approximate solutions for a class of problems, in which the ''n''-th approximation is derived from the pre ...
used to solve a
system of linear equations. It is named after the
German
German(s) may refer to:
* Germany (of or related to)
**Germania (historical use)
* Germans, citizens of Germany, people of German ancestry, or native speakers of the German language
** For citizens of Germany, see also German nationality law
**Ger ...
mathematician
A mathematician is someone who uses an extensive knowledge of mathematics in their work, typically to solve mathematical problems.
Mathematicians are concerned with numbers, data, quantity, mathematical structure, structure, space, Mathematica ...
s
Carl Friedrich Gauss
Johann Carl Friedrich Gauss (; german: Gauß ; la, Carolus Fridericus Gauss; 30 April 177723 February 1855) was a German mathematician and physicist who made significant contributions to many fields in mathematics and science. Sometimes refe ...
and
Philipp Ludwig von Seidel
Philipp Ludwig von Seidel (; 24 October 1821 in Zweibrücken, Germany – 13 August 1896 in Munich, German Empire) was a German mathematician. He was the son of Julie Reinhold and Justus Christian Felix Seidel.
Lakatos credits von Seidel with d ...
, and is similar to the
Jacobi method
In numerical linear algebra, the Jacobi method is an iterative algorithm for determining the solutions of a strictly diagonally dominant system of linear equations. Each diagonal element is solved for, and an approximate value is plugged in. Th ...
. Though it can be applied to any matrix with non-zero elements on the diagonals, convergence is only guaranteed if the matrix is either
strictly diagonally dominant, or
symmetric
Symmetry (from grc, συμμετρία "agreement in dimensions, due proportion, arrangement") in everyday language refers to a sense of harmonious and beautiful proportion and balance. In mathematics, "symmetry" has a more precise definit ...
and
positive definite. It was only mentioned in a private letter from Gauss to his student
Gerling in 1823. A publication was not delivered before 1874 by Seidel.
Description
The Gauss–Seidel method is an
iterative technique for solving a square system of linear equations with unknown :
It is defined by the iteration
where
is the -th approximation or iteration of
is the next or -th iteration of
, and the matrix is decomposed into a
lower triangular component
, and a
strictly upper triangular component
; that is,
.
In more detail, write out , and in their components:
Then the decomposition of into its lower triangular component and its strictly upper triangular component is given by:
The system of linear equations may be rewritten as:
:
The Gauss–Seidel method now solves the left hand side of this expression for x, using previous value for x on the right hand side. Analytically, this may be written as:
However, by taking advantage of the triangular form of
, the elements of can be computed sequentially using
forward substitution:
The procedure is generally continued until the changes made by an iteration are below some tolerance, such as a sufficiently small
residual.
Discussion
The element-wise formula for the Gauss–Seidel method is extremely similar to that of the
Jacobi method
In numerical linear algebra, the Jacobi method is an iterative algorithm for determining the solutions of a strictly diagonally dominant system of linear equations. Each diagonal element is solved for, and an approximate value is plugged in. Th ...
.
The computation of uses the elements of that have already been computed, and only the elements of that have not been computed in the -th iteration. This means that, unlike the Jacobi method, only one storage vector is required as elements can be overwritten as they are computed, which can be advantageous for very large problems.
However, unlike the Jacobi method, the computations for each element are generally much harder to implement in
parallel, since they can have a very long
critical path, and are thus most feasible for
sparse matrices. Furthermore, the values at each iteration are dependent on the order of the original equations.
Gauss-Seidel is the same as
SOR (successive over-relaxation) with
.
Convergence
The convergence properties of the Gauss–Seidel method are dependent on the matrix ''A''. Namely, the procedure is known to converge if either:
* is symmetric
positive-definite, or
* is strictly or irreducibly
diagonally dominant.
The Gauss–Seidel method sometimes converges even if these conditions are not satisfied.
Algorithm
Since elements can be overwritten as they are computed in this algorithm, only one storage vector is needed, and vector indexing is omitted. The algorithm goes as follows:
Inputs: ,
repeat until convergence
for from 1 until do
for from 1 until do
if ≠ then
end if
end (-loop)
end (-loop)
check if convergence is reached
end (repeat)
Examples
An example for the matrix version
A linear system shown as
is given by:
We want to use the equation
in the form
where:
:
We must decompose
into the sum of a lower triangular component
and a strict upper triangular component
:
The inverse of
is:
Now we can find:
Now we have
and
and we can use them to obtain the vectors
iteratively.
First of all, we have to choose
: we can only guess. The better the guess, the quicker the algorithm will perform.
We choose a starting point:
We can then calculate:
As expected, the algorithm converges to the exact solution:
In fact, the matrix is strictly diagonally dominant (but not positive definite).
Another example for the matrix version
Another linear system shown as
is given by:
We want to use the equation
in the form
where:
:
We must decompose
into the sum of a lower triangular component
and a strict upper triangular component
:
The inverse of
is:
Now we can find:
Now we have
and
and we can use them to obtain the vectors
iteratively.
First of all, we have to choose
: we can only guess. The better the guess, the quicker will perform the algorithm.
We suppose:
We can then calculate:
If we test for convergence we'll find that the algorithm diverges. In fact, the matrix A is neither diagonally dominant nor positive definite.
Then, convergence to the exact solution
is not guaranteed and, in this case, will not occur.
An example for the equation version
Suppose given equations where ''x''
''n'' are vectors of these equations and starting point ''x''
0.
From the first equation solve for ''x''
1 in terms of
For the next equations substitute the previous values of ''x''s.
To make it clear consider an example.
Solving for
and
gives:
Suppose we choose as the initial approximation, then the first approximate solution is given by
Using the approximations obtained, the iterative procedure is repeated until the desired accuracy has been reached. The following are the approximated solutions after four iterations.
The exact solution of the system is .
An example using Python and NumPy
The following numerical procedure simply iterates to produce the solution vector.
import numpy as np
ITERATION_LIMIT = 1000
# initialize the matrix
A = np.array(10., -1., 2., 0.
1 (one, unit, unity) is a number representing a single or the only entity. 1 is also a numerical digit and represents a single unit of counting or measurement. For example, a line segment of ''unit length'' is a line segment of length 1. ...
1., 11., -1., 3.
., -1., 10., -1.
., 3., -1., 8.)
# initialize the RHS vector
b = np.array( .0, 25.0, -11.0, 15.0
print("System of equations:")
for i in range(A.shape :
row = "*x" for j in range(A.shape[1">.html" ;"title=""*x" for j in range(A.shape[1">"*x" for j in range(A.shape[1 print("[] = []".format(" + ".join(row), b[i]))
x = np.zeros_like(b)
for it_count in range(1, ITERATION_LIMIT):
x_new = np.zeros_like(x)
print(f"Iteration : ")
for i in range(A.shape :
s1 = np.dot(A , :i x_new i
s2 = np.dot(A , i + 1 : x + 1 :
x_new = (b - s1 - s2) / A , i if np.allclose(x, x_new, rtol=1e-8):
break
x = x_new
print(f"Solution: ")
error = np.dot(A, x) - b
print(f"Error: ")
Produces the output:
System of equations:
10*x1 + -1*x2 + 2*x3 + 0*x4= 6 -1*x1 + 11*x2 + -1*x3 + 3*x4= 25 2*x1 + -1*x2 + 10*x3 + -1*x4= 11 0*x1 + 3*x2 + -1*x3 + 8*x4= 15Iteration 1: 0. 0. 0. 0.Iteration 2: 0.6 2.32727273 -0.98727273 0.87886364Iteration 3: 1.03018182 2.03693802 -1.0144562 0.98434122Iteration 4: 1.00658504 2.00355502 -1.00252738 0.99835095Iteration 5: 1.00086098 2.00029825 -1.00030728 0.99984975Iteration 6: 1.00009128 2.00002134 -1.00003115 0.9999881 Iteration 7: 1.00000836 2.00000117 -1.00000275 0.99999922Iteration 8: 1.00000067 2.00000002 -1.00000021 0.99999996Iteration 9: 1.00000004 1.99999999 -1.00000001 1. Iteration 10: 1. 2. -1. 1.Solution: 1. 2. -1. 1.Error: 2.06480930e-08 -1.25551054e-08 3.61417563e-11 0.00000000e+00
Program to solve arbitrary no. of equations using Matlab
The following code uses the formula
function x = gauss_seidel(A, b, x, iters)
for i = 1:iters
for j = 1:size(A,1)
x(j) = (b(j) - sum(A(j,:)'.*x) + A(j,j)*x(j)) / A(j,j);
end
end
end
See also
*
Gaussian belief propagation
*
Iterative method. Linear systems
*
Kaczmarz method
The Kaczmarz method or Kaczmarz's algorithm is an iterative algorithm for solving linear equation systems A x = b . It was first discovered by the Polish mathematician Stefan Kaczmarz, and was rediscovered in the field of image reconstruction fr ...
(a "row-oriented" method, whereas Gauss-Seidel is "column-oriented." See, for example
this paper)
*
Matrix splitting
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) depen ...
*
Richardson iteration
Modified Richardson iteration is an iterative method for solving a system of linear equations. Richardson iteration was proposed by Lewis Fry Richardson in his work dated 1910. It is similar to the Jacobi and Gauss–Seidel method.
We seek the so ...
Notes
References
* .
* .
*
External links
*
Gauss–Seidel from www.math-linux.comFrom Holistic Numerical Methods Institute
BicksonMatlab code
{{DEFAULTSORT:Gauss-Seidel Method
Numerical linear algebra
Articles with example pseudocode
Relaxation (iterative methods)
Articles with example Python (programming language) code
Articles with example MATLAB/Octave code