workerant
- 40
- 0
The discussion centers on the uniqueness of LU decomposition for invertible matrices, specifically addressing the claim that if LU and L'U' are two LU decompositions, then L must equal L' and U must equal U'. A counterexample is provided using the invertible matrix A = | 3 -6 | | -2 5 |, demonstrating that two distinct LU decompositions exist for this matrix. The first decomposition is L = | 3 0 | and U = | 1 -2 |, while the second is L' = | 1 0 | and U' = | 3 -6 |. This proves that the LU decomposition is not unique in general.
PREREQUISITESStudents and educators in linear algebra, mathematicians interested in matrix theory, and anyone studying numerical methods for solving linear systems.
What you're trying to prove isn't true in general. Here's a counterexample.workerant said:Homework Statement
Let LU and L'U' be two LU decompositions for an invertible matrix. Prove L=L' and U=U', thus the LU decomposition for an invertible matrix is unique.
The Attempt at a Solution
I honestly do not really know what to do. I suppose I could consider something with the diagonals being equal and try to show that the entries would be the same for the identity matrix, but I'm not sure how to approach any of this.
| 3 -6 |
| -2 5 |
| 3 0| |1 -2 |
| -2 1| |0 1 |
| 1 0| |3 -6 |
| -2/3 1| |0 1 |