To solve systems of three or more linear equations, you'll typically convert the problem into an augmented matrix and row reduce from there. However, this process can be slow and inefficient with more equations. The number of arithmetic operations you need to compute goes up by the factorial of the dimension of the matrix, so that it's impractical to solve systems of six or more equations by hand. In real life, systems of 1000 equations are not uncommon - even 50 equations involve computing a number of operations comparable to the number of atoms in the visible universe.
That's why lower-upper factorization (called LU factorization or LU decomposition ) is important—it reduces the amount of operations to the cube of the dimension of the matrix. LU factorization lets you decompose a matrix into two triangular matrices— for upper triangular, and for lower triangular. After you've set up the matrices, you can find the solutions by back substitution. Some computers use this method to quickly solve systems that would be impractical to deal with via row-reduction.
In this article, we'll show how to perform an LU factorization for a system of three equations, for simplicity.
Steps
-
1Begin with the matrix equation. Fundamentally, a system of equations can be written in terms of a matrix equation where matrix acts on a vector to output another vector It is often the case that we wish to know and this is no exception. In LU factorization, we will see that we can define the relation where and are both triangular matrices.
-
2Row-reduce to row-echelon form. The row-echelon form will become our matrix
-
-
- The matrix is in row-echelon form now.
Advertisement -
-
3Obtain by undoing your row-reduction steps. This step may be a bit tricky at first, but we are essentially constructing a matrix by going backwards.
- Let's look at the most recent row reduction
We found the new
row 3 by replacing it with a linear combination of the old
rows of the matrix. Now, we wish to find the old
row 3, so simply solve.
- This undoes the second row-reduction. Now, we put it in matrix form. Let's call this matrix
The column vector to the right simply clarifies what we are doing - this matrix we are constructing is a linear transformation that does the same thing as what we just wrote above. Observe that, since we didn't do anything to the top two rows, the resulting elements for the two rows in this matrix are the same as in the identity matrix. Only the third row changes.
- Construct the matrix that undoes the first row-reduction. Similarly, we are solving for the old row 2 and 3. We'll call this matrix
- Multiply the
matrices in the order that we found them. This means that
If you did the multiplication correctly, you should get a lower triangular matrix.
- Let's look at the most recent row reduction
We found the new
row 3 by replacing it with a linear combination of the old
rows of the matrix. Now, we wish to find the old
row 3, so simply solve.
-
4Rewrite the matrix equation in terms of . Now that we have both matrices, we can see below that acting on the vector outputs
- Since is a vector, let Then, we see that The goal here is to first solve for then plug into to solve for
-
5Solve for . Because we are dealing with triangular matrices, back-substitution is the way to go.
-
6Solve for . This will again involve back-substitution, because is triangular.
- Although this method may not seem very efficient to you (and indeed, LU factorization for systems of three equations is no better than row-reduction), computers are well-equipped to perform back-substitution, so the results really show as the number of equations goes up.