LU Decomposition Calculator
Welcome to 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 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— Lower triangular matrix (all elements above the diagonal are zero); andU— 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 ℓ11=0ℓ11=0 or u11=0u11=0. Next, however, we have the following equalities:
which imply that neither ℓ11=0ℓ11=0 nor u11=0u11=0 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:
- PP is a permutation matrix (it reorders the rows of AA);
- LL is a lower triangular matrix; and
- UU is an upper triangular matrix.
How to find the LU decomposition?
For a general n×nn×n matrix AA, we assume that the factorization follows the below LU decomposition formula
which exists, and we can write it down explicitly. For instance, for a 3×33×3 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 LL and UU.
In our LU decomposition example, we have:
Clearly, from the first three equations we immediately get the values of u11u11, u12u12 and u13u13, which we then plug into the remaining equations. The 4th and 7th equations allow us to find ℓ21ℓ21 and ℓ31ℓ31. Then, the 5th and 6th equations give the values of u22u22 and u23u23. Finally, the last two equations will produce the solutions for ℓ32ℓ32 and u33u33.
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 LL and UU. Here they are for an n×nn×n matrix:
- Find the first row of UU and the first column of LL. For each j=1,...,nj=1,...,n, we have
- Next, for each i=1,...,n−1i=1,...,n−1, we have
- Finally, we can determine the last entry of UU:
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, 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.
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 det(A)det(A) and we know the LU decomposition A=LUA=LU, then:
where:
- ℓ11⋅...⋅ℓnnℓ11⋅...⋅ℓnn are the diagonal entries of LL; and
- u11⋅...⋅unnu11⋅...⋅unn are the diagonal entries of UU.
FAQs
- What is the LU decomposition?
- The LU decomposition factors a square matrix A into the product of two matrices: A = LU where: L — Lower triangular matrix (all elements above the diagonal are zero); and U — Upper triangular matrix (all the elements below the diagonal are zero).
- 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.
Related calculators
Remainder
Use the remainder calculator to find the quotient and remainder of division.
Math
Slope
Calculate the slope of a line from two given points using the slope calculator. Discover the slope formula and learn how to find a slope with two points.
Math
Average
Calculate the average (mean) with our user-friendly tool. Discover how to find averages or perform quick calculations effortlessly.
Math
Circumference
Use this free circumference calculator to find the area, circumference and diameter of a circle.
Math