SVD calculator (singular value decomposition)
Compute the singular value decomposition A = U·Σ·Vᵀ of any matrix. The singular values are the square roots of the eigenvalues of AᵀA, found with the Jacobi eigenvalue algorithm; U and V are orthogonal. Enter A on an editable grid (up to 6×6) and it returns the singular values, U, Σ, Vᵀ and the reconstruction U·Σ·Vᵀ. SVD underpins PCA, image compression, recommender systems and the pseudo-inverse.
Related tools
All Matrices & vectors tools →SVD calculator (singular value decomposition) works straight from this page — free, instant, nothing to install. You will find it under Matrices & vectors, with Cholesky decomposition calculator and LU Decomposition Calculator for the neighbouring cases.
How to use it
- Open the tool — no signup or install needed.
- Enter your input or adjust the available options.
- Get your result instantly, then copy or download it.
Frequently asked questions
What is SVD calculator (singular value decomposition)?
Compute the singular value decomposition A = U·Σ·Vᵀ of any matrix. The singular values are the square roots of the eigenvalues of AᵀA, found with the Jacobi eigenvalue algorithm; U and V are orthogonal. Enter A on an editable grid (up to 6×6) and it returns the singular values, U, Σ, Vᵀ and the reconstruction U·Σ·Vᵀ. SVD underpins PCA, image compression, recommender systems and the pseudo-inverse.
What does a concrete case look like?
[[3, 0], [0, 2]] → σ₁ = 3, σ₂ = 2 — the tool shows every step in between, not just the final figure.
When would I actually use this?
Checking a decomposition done by hand, solving a linear system, and finding the eigenvalues that describe how a transformation stretches space.
What is the most common mistake?
Inverting a matrix to solve a system. Elimination or a factorisation is both faster and far more stable numerically; an explicit inverse amplifies rounding error, especially when the matrix is close to singular.
How is SVD calculator (singular value decomposition) different from Cholesky decomposition calculator?
They sit next to each other but answer different questions: Cholesky decomposition calculator is the one to open when you need it to factor a symmetric positive-definite matrix A into L·Lᵀ, where L is lower triangular — the Cholesky decomposition. Enter A on an editable square grid and it returns L, Lᵀ and the product L·Lᵀ; if the matrix is not symmetric or not positive-definite, it tells you which condition failed. Twice as fast as LU, Cholesky is used in optimization, Kalman filters and Monte-Carlo simulation. Pick whichever matches what you're starting from — both are free.
Is there a tool for the next step?
LU Decomposition Calculator is the closest one after this: Factor a square matrix into a lower L and upper U triangular matrix (Doolittle method).
What else is worth having open alongside it?
QR decomposition calculator and Partial Fraction Decomposition Calculator — they come up in the same task often enough to be worth a second tab.
Where do the figures come from?
The decompositions follow their textbook definitions with partial pivoting where it applies. Results are exact for small integer matrices and subject to floating-point rounding otherwise.