Solve decompositions fast with guided matrix breakdowns. View orthogonal factors, singular spectrum, and exact reconstruction. Practice linear algebra concepts using intuitive exports and visuals.
Use one row per line. Separate values with spaces or commas.
This sample matrix works well for testing steps, exports, and the graph.
| Column 1 | Column 2 | |
|---|---|---|
| Row 1 | 3 | 1 |
| Row 2 | 2 | 2 |
| Row 3 | 0 | 1 |
Sample entry format: 3 1, 2 2, and 0 1 on separate lines.
Core identity: A = UΣVᵀ
Symmetric step: AᵀA = VΛVᵀ
Singular values: σᵢ = √λᵢ
Left vectors: uᵢ = Avᵢ / σᵢ, when σᵢ > 0
Check: UΣVᵀ should reconstruct the original matrix with tiny numerical error.
SVD means singular value decomposition. It factors a matrix into left singular vectors, singular values, and right singular vectors. This reveals structure, rank, and directional strength.
AᵀA is symmetric and easier to analyze numerically. Its eigenvalues are nonnegative, and their square roots become the singular values used in the decomposition.
The rank estimates how many singular values are meaningfully nonzero. It tells you how many independent directions exist in the matrix.
Tiny errors come from rounding and iterative numerical computation. A very small difference matrix usually confirms the decomposition is working correctly.
Yes. The calculator accepts rectangular inputs up to the allowed size limits. The compact decomposition still shows the essential singular structure clearly.
The condition number compares the largest and smallest nonzero singular values. Larger values suggest greater sensitivity to input changes or numerical noise.
Increase iterations for harder matrices or stricter convergence. Adjust tolerance when you want smaller values treated as numerical zeros during rank estimation.
The graph plots singular values and cumulative energy. It helps you see dominant components quickly and judge how much information each component captures.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.