Questions: LU Decomposition

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

You need to solve Ax = b for 50 different right-hand-side vectors b, where A is a fixed 500×500 matrix. Compared to running Gaussian elimination 50 separate times, LU decomposition offers what advantage?

ALU is faster only for the first solve; subsequent solves cost the same as elimination
BLU performs one O(n³) factorization, then each of the 50 solves costs only O(n²) via forward and back substitution
CBoth approaches cost the same total work — LU is only useful when b is unknown in advance
DLU avoids all numerical errors, making it more accurate rather than faster
Question 2 Multiple Choice

What does the lower triangular matrix L in an LU decomposition actually store?

AThe inverse of the upper triangular matrix U
BThe row echelon form of A with the pivots on the diagonal
CThe multipliers used during Gaussian elimination to zero out below-diagonal entries
DThe eigenvalues of A arranged in lower triangular form
Question 3 True / False

LU decomposition typically exists for any invertible matrix without requiring row interchanges.

TTrue
FFalse
Question 4 True / False

Solving the triangular system Ly = b (forward substitution) costs O(n²) operations, which is cheaper than the O(n³) required for full Gaussian elimination on Ax = b.

TTrue
FFalse
Question 5 Short Answer

Why is LU decomposition more efficient than repeated Gaussian elimination when solving Ax = b for many different vectors b, and what is the role of each factor?

Think about your answer, then reveal below.