GAUSS-SEIDEL METHOD
Gauss-Seidel method - An iterative method to solve Ax=b using the latest values of the components of x during the updates. Specifically, A is split into L-T, where L is lower triangular, and the update solves Lx' = Tx + b. (Surprisingly, history indicates Gauss did not know about this method, and Seidel did not recommend it.) Often people refer to the method to mean the use of latest values, rather than the specific splitting. It arises, for example, in parallel computation, where using the latest value of x during the computation of x' is not done since it would not be able to take advantage of the parallelism. Here is a