Solving Linear Systems of Equations Reduced Row Echelon Form When solving linear systems, we first transform the system into an augmented matrix. At that point our goal is to transform the matrix into an "easier" matrix whose corresponding linear system has the same solution set. We now defined what it means for a matrix to be "easier". Definition An m x n matrix is in reduced row echelon form if it satisfies the following properties:
If only 1, 2, and 3 are satisfied, then the matrix is in row echelon form.
Example Of the following three matrices,
The A and B are in rref, while C is not. The main purpose of putting a matrix in rref is that this form makes the solution of the linear system easy to identify. For example A corresponds to the system x1 = 4 x2 = 2 x3 = x3 or in parametric form we get the line x1 = 4 x2 = 2 x3 = t B corresponds to the system x1 + 3x3 = 5 x2 - x3 = 0 x3 = x3 This also gives us a line. In parametric form it is x1 = 5 - 3t x2 = t x3 = t Row Operations and RREF We saw awhile back that the three row operation do not effect the solution space of a system of linear equations. We restate the row operations here for convenience: Three Elementary Row Operations
Two matrices are called row equivalent if one can be transformed into the other using a sequence of row operations. Since row operations do not effect the solution space, any two row equivalent matrices have the same solution space. Theorem Every m x n matrix is row equivalent to a unique matrix in rref.
Instead of proving this theorem, we will explain how to take a matrix and transform it into an rref matrix using only the elementary row operations. We follow the following procedures:
Example Use the elementary row operations to put the following in rref.
Solution We follow the procedures:
Homogeneous Systems A homogeneous system of linear equation is a linear system of equations where the right hand sides of all the equations are zero. That is it is of the form a11x1
+ a12x2 + ... + a1nxn =
0 Notice that in matrix form this can be written as Ax = 0 where A is the m x n matrix with entries aij, x the the n x 1 matrix with entries xi and 0 is the n x 1 zero matrix. The augmented matrix's last column is the zero column. Since the zero column is unaffected by elementary row operations, it is usually left out when the computations are performed. The solution (0,0, ... , 0) is called the trivial solution. Any other solution is called a nontrivial solution. Theorem Let Ax = 0 be a homogeneous system with m x n matrix A. If m < n, then the system always has a nontrivial solution. This theorem just states that if there are more variables than equations, then there is a nonzero solution. Proof Let B be the rref equivalent matrix to A. Then B has a column that does not contain a corner. This gives us a parameter in the solution which we can set to 1, giving us a nontrivial solution. Since B has the same solution set as A, A has this same nontrivial solution. Back to the Matrices and Applications Home Page Back to the Linear Algebra Home Page Back to the Math Department Home Page e-mail Questions and Suggestions
|