LU Decomposition Calculator
Welcome to Omni's LU decomposition calculator! Here you can determine the LU decompositions, learn what the LU decomposition is, and what its applications are. Moreover, we discuss when the LU decomposition exists (LU decomposition problems), and teach you how to find the LU decomposition by hand.
What does it mean to decompose a matrix?
To decompose (or factorize) a matrix means to write the matrix as a product of two or more matrices. This can significantly simplify some matrix operations because the matrices into which we decompose the original matrix have special properties, so we can easily perform various operations on them rather than on the original matrix. To discover matrix decompositions other than the LU decomposition discussed here, visit our QR decomposition calculator, the Cholesky decomposition calculator, and the singular value decomposition (SVD).
What is the LU decomposition?
The LU decomposition factors a square matrix A
into the product of two matrices:
A = LU
,
where:
L
is a lower triangular matrix (all elements above the diagonal are zero); andU
is an upper triangular matrix (all the elements below the diagonal are zero).
💡 Did you know that it was the Polish mathematician Tadeusz Banachiewicz who introduced the LU decomposition in 1938.
Does the LU decomposition always exist? LU decomposition problems
Do you think it would be all too perfect if we could take any square matrix and write it as the product of a lower and upper triangular matrices? You're right, it may happen that a matrix does not admit an LU decomposition. For instance, let's take a look at the following 2x2 matrix:
and try to write it as a product of a lower-triangular and upper-triangular matrices:
We see that the following equality needs to hold:
which implies that either or . Next, however, we have the following equalities:
which imply that neither nor can hold. Hence, there is a contradiction with the assumption that our matrix can be written as a product of a lower and upper triangular matrix. However, once we permute it rows, we arrive at
which is an upper-triangular matrix! Hence, the LU decomposition is trivial:
It turns out that even if the LU decomposition is not possible for a square matrix, there always exists a permutation of rows of the matrix such that the LU factorization is achievable for this permuted matrix. This is called LU factorization with partial pivoting and can be written as:
where:
- is a permutation matrix (it reorders the rows of );
- is a lower triangular matrix; and
- is an upper triangular matrix.
How to find the LU decomposition?
For a general matrix , we assume that the factorization follows the below LU decomposition formula
which exists and we can write it down explicitly. For instance, for a matrix, we have:
As you can see, there are more unknowns on the left-hand side of the equation than on the right-hand side, so some of them can be set to any non-zero value. It's common to set all the entries of the main diagonal of the lower triangular matrix to ones (such a matrix is called a unit triangular matrix):
Now, we write down the system of linear equations implied by the standard matrix multiplication procedure and solve for the remaining unknown entries of and .
In our LU decomposition example, we have:
Clearly, from the first three equations we immediately get the values of , and , which we then plug into the remaining equations. The 4th and 7th equations allow us to find and . Then, the 5th and 6th equations give the values of and . Finally, the last two equations will produce the solutions for and .
As you can see, for small matrices it's not hard to write down the system and solve it. For larger matrices, however, it's more convenient to have a bunch of ready formulas for the coefficients of and . Here they are for an matrix:
- Find the first row of and the first column of . For each , we have
- Next, for each , we have
- Finally, we can determine the last entry of :
How to use this LU decomposition calculator?
As we have seen in the previous section, finding LU decompositions can be difficult, or at least time-consuming, especially for larger matrices. Thankfully, Omni's LU decomposition calculator is here to help you save some time, which you may then spend chilling out! 😀
To quickly determine the LU decomposition with the help of our LU decomposition calculator, follow these steps:
- Choose the size of the matrix you want to find the LU decomposition of.
- Enter the coefficients of your matrix into the respective fields of the LU decomposition calculator.
- If your matrix admits an LU decomposition, the calculator will display it. Otherwise, a warning message will appear. Permute the rows of your matrix and try again.
- You can adjust the precision with which this LU decomposition calculator operates. Go to the
advanced mode
and change theprecision
field according to your need. By default, 3 significant figures are displayed.
Applications of the LU decomposition
As we can see, the LU decomposition factors a matrix into two triangular matrices which can be quickly done with our LU decomposition solver. Triangular matrices are very friendly to work with, e.g., when it comes to:
- Calculating matrix determinant;
- Finding inverse matrices; and
- Solving systems of linear equations.
Let's discuss in more detail how the LU decomposition helps to find determinants. Recall that:
- The determinant of a triangular matrix is the product of the diagonal entries; and
- The determinant of a product of matrices is the product of determinants of these matrices (we say that the determinant is multiplicative)
Therefore, if we need to find and we know the LU decomposition , then:
where:
- are the diagonal entries of ; and
- are the diagonal entries of .
FAQ
Does every square matrix have an LU decomposition?
No, some square matrices do not have an LU decomposition. However, it is always possible to permute the rows of a square matrix in such a way that after this permutation it will have an LU decomposition.
What is L and U in the LU decomposition?
L
stands for a Lower triangular matrix and U
for an Upper triangular matrix. When a matrix A
is LU-decomposed, it will deliver a pair of such matrices L
and U
.
How do I find the inverse of a matrix using LU decomposition?
Recall the inverse principle: if A = LU, then A⁻¹ = U⁻¹L⁻¹ (mind the change in order!). Then find the inverses of U and L. It will be quite easy because of the many zeros contained in these matrices.
A = | ⌈ | a₁ | a₂ | ⌉ |
⌊ | b₁ | b₂ | ⌋ |