I know what LU Decomposition is but I don't know why we have have to learn about it. What are we using it for? (What's the point to know about it?)
Thanks.
I know what LU Decomposition is but I don't know why we have have to learn about it. What are we using it for? (What's the point to know about it?)
Thanks.
The source for my answer is Richard C. Penney's Linear Algebra: Ideas and Applications, 4th edition.
LU decomposition is useful if you want to solve the matrix equation AX = Y for many different Ys with the same A because in that case, you need decompose A only once, and AX = LUX = Y can be solved without row reduction.
Another feature that makes LU decomposition numerically efficient is that as you reduce A to get U, you get L without any more work.