row reduction
Row reduction, also known as Gaussian elimination, is an algorithm for solving a system of linear equations
To describe row reduction, it is convenient to formulate a linear system as a single matrix-vector equation where
are, respectively, the matrix of coefficients of the linear system, the -place column vector of the scalars from the right-hand of the equations, and the -place column vector of unknowns.
The method consists of combining the coefficient matrix with the right hand vector to form the “augmented” matrix
where each is the -place row vector corresponding to row of the augmented matrix.
A sequence of elementary row operations is then applied to this matrix so as to transform it to row echelon form. The elementary operations are:
-
•
row scaling: the multiplication a row by a nonzero scalar;
-
•
row exchange: the exchanges of two rows;
-
•
row replacement: the addition of a multiple of one row to another row;
Note that these operations are “legal” because is a solution of the transformed system if and only if it is a solution of the initial system.
If the number of equations equals the number of variables (), and if the coefficient matrix is non-singular (http://planetmath.org/singular), then the algorithm will terminate when the augmented matrix has the following form:
With these assumptions, there exists a unique solution, which can be obtained from the above matrix by back substitution.
For the general case, the termination procedure is somewhat more complicated. First recall that a matrix is in echelon form if each row has more leading zeros than the rows above it. A pivot is the leading non-zero entry of some row. We then have
-
•
If there is a pivot in the last column, the system is inconsistent ; there will be no solutions.
-
•
If that is not the case, then the general solution will have degrees of freedom, where is the number of columns from to that have no pivot. To be more precise, the general solution will have the form of one particular solution plus an arbitrary linear combination of linearly independent -vectors.
In even more prosaic language, the variables in the non-pivot columns are to be considered “free variables” and should be “moved” to the right-hand side of the equation. The general solution is then obtained by arbitrarily choosing values of the free variables, and then solving for the remaining “non-free” variables that reside in the pivot columns.
A variant of Gaussian elimination is Gauss-Jordan elimination. In this variation we reduce to echelon form, and then if the system proves to be consistent, continue to apply the elementary row operations until the augmented matrix is in reduced echelon form. This means that not only does each pivot have all zeroes below it, but that each pivot also has all zeroes above it.
In essence, Gauss-Jordan elimination performs the back substitution; the values of the unknowns can be read off directly from the terminal augmented matrix. Not surprisingly, Gauss-Jordan elimination is slower than Gaussian elimination. It is useful, however, for solving systems on paper.
Title | row reduction |
Canonical name | RowReduction |
Date of creation | 2013-03-22 12:06:48 |
Last modified on | 2013-03-22 12:06:48 |
Owner | rmilson (146) |
Last modified by | rmilson (146) |
Numerical id | 18 |
Author | rmilson (146) |
Entry type | Algorithm |
Classification | msc 15A06 |
Synonym | Gaussian elimination |
Synonym | Gauss-Jordan elimination |
Related topic | RowEchelonForm |
Related topic | ReducedRowEchelonForm |
Related topic | ElementaryMatrix |
Defines | pivot |
Defines | row operation |
Defines | row exchange |
Defines | row replacement |
Defines | row scaling |