ITERATIVE METHODS
An iterative method is a method that is progressively calculating approximations to the solution of a problem. In mathematics, in an iterative method is repeated the same process of improvement on an approximate solution: is expected to be obtained is a more approximate than the first. The process is repeated on this new solution until the most recent result meets certain requirements. Unlike direct methods, in which they must complete the process to have the answer, the iterative methods can suspend the process at the end of an iteration and gives an approximation to the solution.
Jacobi method:
The Jacobi method is the iterative method for solving systems of linear equations as simple and applies only to square systems, ie systems with as many unknowns as equations.
1. First, we determine the equation of recurrence. For this order the equations and unknowns. From the equation i cleared the unknown i. In matrix notation is written as:
x = c + Bx (1)
where x is the vector of unknowns.
2. It takes an approach to the solutions and this is designated by xo
3.Is iterated in the cycle that changes the approach
xi +1 = c + Bxi
The Gauss-Seidel Method:
The Gauss-Seidel method is very similar to the method of Jacobi. While in the Jacobi using the value of the unknowns to determine a new approach, the Gauss-Seidel is using the values of the unknowns recently calculated in the same iteration, and not the next. For example, the Jacobi method is obtained in the first calculation xi +1, but the value of x is not used until the next iteration. In the Gauss-Seidel method instead is used instead of xi xi +1 immediately to calculate the value of yi +1 equally applicable to the following variables are always used the newly calculated variables.
REFERENCES:
http://www.uv.es/~diaz/mn/node32.html
http://www.mty.itesm.mx/etie/deptos/m/ma95-843/lecturas/l843-13.pdf
http://es.wikipedia.org/wiki/M%C3%A9todo_iterativo








