Questions: Condition Number of a Matrix

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A scientist finds that changing the last digit of one entry in b causes the solution x to change drastically. Their colleague suggests switching from Gaussian elimination to a more sophisticated iterative solver. Will this help?

AYes — iterative solvers are more numerically stable and will produce more accurate results
BNo — the sensitivity of x to perturbations in b is determined by κ(A), a property of the matrix, not the algorithm
CYes — but only if the iterative method also uses higher-precision floating point
DNo — the only fix is to eliminate the measurement error in b, after which any algorithm works
Question 2 Multiple Choice

A matrix A has condition number κ(A) = 10⁸. If you solve Ax = b using double-precision arithmetic (about 16 significant decimal digits), approximately how many accurate significant digits can you expect in your solution?

A16 — double-precision always delivers 16 accurate digits regardless of the matrix
BAbout 8 — roughly 16 − log₁₀(κ(A)) significant digits survive
C0 — any condition number above 1 renders the solution meaningless
DIt depends on the algorithm; partial pivoting can recover all 16 digits
Question 3 True / False

An orthogonal matrix Q (where Q^T Q = I) has condition number κ(Q) = 1, making it perfectly conditioned.

TTrue
FFalse
Question 4 True / False

Gaussian elimination with partial pivoting can reduce the condition number of an ill-conditioned matrix, improving how accurately the solution reflects the true answer.

TTrue
FFalse
Question 5 Short Answer

Explain in your own words why an ill-conditioned system cannot be 'fixed' by using a better algorithm, and what the appropriate response is when you discover that κ(A) is very large.

Think about your answer, then reveal below.