Skip to main content

Linear Algebra

Geoffrey Hunter
mbedded.ninja Author

Matrix Condition Number

low condition number -> matrix is well conditioned
high condition number -> matrix is ill conditioned

infinity -> matrix is singular (non-invertible)

A matrix that is not invertible has a condition number of infinity.

What does this mean in a practical sense? When using the formula Ax = b\textbf{Ax = b}, a matrix A\textbf{A} with a high condition number is usually unsuitable when solving real-world problems, as it means that a small change in bb will result in a large change in x\textbf{x}.