Σ SVD Calculator
SVD — Singular Value Decomposition
Compute A = UΣVᵀ for any matrix. Shows U (left singular vectors), Σ (singular values), and V (right singular vectors) with rank and condition number.
Singular Value Decomposition A = UΣVᵀ
Powered by math.js high-precision library
✓ math.js Engine✓ Condition Number✓ Free⚡ Loading SymPy Engine…
ℹ SVD computation uses math.js numeric library. Requires math.js to be loaded (CDN). Works for any m×n matrix.
Matrix A
Quick Examples
Singular Value Decomposition
SVD is one of the most important matrix factorizations. Every real m×n matrix A can be written as:
$$A = U\Sigma V^T$$
- U: m×m orthogonal matrix (left singular vectors)
- Σ: m×n diagonal matrix (non-negative singular values σ₁ ≥ σ₂ ≥ ... ≥ 0)
- V: n×n orthogonal matrix (right singular vectors)
Applications
- Image compression (low-rank approximation)
- Principal Component Analysis (PCA)
- Pseudoinverse and least-squares solutions
- Numerical rank determination
- Condition number: κ = σ₁/σₙ (ratio of largest to smallest non-zero singular value)