Matrix Conditioning & Numerical Stability Analysis
Calculate the condition number of a matrix to assess its numerical stability and conditioning. The condition number indicates how sensitive the solution of a linear system is to changes in the input data.
The matrix must be square and invertible to have a finite condition number
Click on any example to load it into the calculator
Simple well-conditioned 2×2 matrix
matrix: [[[2,1],[1,2]]]
normType: [2]
Perfect conditioning with condition number 1
matrix: [[[1,0,0],[0,1,0],[0,0,1]]]
normType: [2]
Matrix with high condition number
matrix: [[[1,1,1],[1,1.01,1],[1,1,1.01]]]
normType: [2]
Classic example of ill-conditioned matrix
matrix: [[[1,0.5,0.333],[0.5,0.333,0.25],[0.333,0.25,0.2]]]
normType: [2]