Gauss Elimination Method: To An Upper Triangular Form
Gauss Elimination Method: To An Upper Triangular Form
Gaussian elimination is a method of solving a linear system equations in unknowns) by bringing the augmented matrix (consisting of
The process of Gaussian elimination has two parts. The first part (Forward Elimination) reduces a given system to either triangular or echelon form, or results in a degenerate equation with no solution, indicating the system has no solution. This is accomplished through the use of elementary row operations. The second step uses back substitution to find the solution of the system above. Stated equivalently for matrices, the first part reduces a matrix to row echelon form using elementary row operations while the second reduces it to reduced row echelon form, or row canonical form. Another point of view, which turns out to be very useful to analyze the algorithm, is that Gaussian elimination computes a matrix decomposition. The three elementary row operations used in the Gaussian elimination (multiplying rows, switching rows, and adding multiples of rows to other rows) amount to multiplying the original matrix with invertible matrices from the left. The first part of the algorithm computes an LU decomposition, while the second part writes the original matrix as the product of a uniquely determined invertible matrix and a uniquely determined reduced row-echelon matrix. This elimination process is also called the forward elimination method. The following examples illustrate the Gauss elimination procedure.
Solution: In this case, the augmented matrix is along the following steps. 1. Interchange and equation (or ).
2. Divide the
equation by
(or
).
3. Add
times the
equation to the
equation (or
).
4. Add
times the
equation to the
equation (or
).
5. Multiply the
equation by
(or
).
Solution: In this case, the augmented matrix is proceeds as follows: 1. Add times the first equation to the second equation.
2. Add
3. Add
Thus, the set of solutions is with arbitrary. In other words, the system has INFINITE NUMBER OF SOLUTIONS.