Questions: Matrix Norms and Condition Numbers

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A linear system Ax = b is solved numerically. The right-hand side b had a relative error of 0.001% due to measurement noise, but the computed solution has a relative error of 10%. What does this tell you about the matrix A?

AThe algorithm has a bug — a correct algorithm would never amplify errors this much
BThe matrix A has a condition number of at least 10,000, meaning it is severely ill-conditioned and tiny perturbations in b can produce large errors in x
CThe matrix A must be singular, since no invertible matrix could amplify relative error by this factor
DThe measurement error in b must have been misreported — 10,000× amplification is physically impossible
Question 2 Multiple Choice

Why is the condition number κ(A) = σ_max/σ_min, rather than just σ_max, the right measure of numerical difficulty for solving Ax = b?

ABecause σ_max alone tells you how large A can make vectors, but conditioning depends on both how much A stretches and how much it compresses — A⁻¹ must undo the compression, amplifying errors in directions with small singular values
BBecause σ_max can equal zero, making it an unreliable measure, while the ratio is always well-defined
CBecause Ax = b always involves only the minimum singular value; σ_max is irrelevant to error analysis
DBecause σ_min/σ_max is the condition number; the formula given has the ratio inverted
Question 3 True / False

A matrix with condition number κ = 1 is the best-conditioned possible, meaning perturbations in b cause no amplification in the error in x.

TTrue
FFalse
Question 4 True / False

The condition number of a matrix depends on the specific right-hand side vector b — a different b in Ax = b leads to a different condition number.

TTrue
FFalse
Question 5 Short Answer

Explain in geometric terms why a matrix with σ_min ≈ 0 makes solving Ax = b numerically unreliable, even when b is known exactly.

Think about your answer, then reveal below.