Eliminación de Gauss-Jordan
Suppose it is necessary to find the numbers x, y, z, which multaneously satisfy these equations:This is called a linear system of equations. The aim is to reduce the equivalent system, which has the same solutions. The operations (called elementary) are these:
* Multiply an equation by a nonzero scalar.
* Exchange of position two equations
* Add a multiple of another equation.
These operations can be represented by elementary matrices used in other procedures such as LU decomposition or diagonalization by congruence of a symmetric matrix.
In our example, we eliminate x from the second equation by adding 3 / 2 times the first equation to the second and then add the first equation of the third. The result is:
Now eliminate the first equation and adding -2 times the second equation to the first, and add -4 times the second equation to eliminate the third y.
Solving, we see solutions:
To clarify the steps (and is actually what computers handle), working with the augmented matrix. We see the three steps in its matrix notation:
First:
After
Finally.
If the system is incompatible, then we should find a line like this:
Representing the equation 0x + 0y + 0z = 1, ie 0 = 1 has no solution.