Decompose a 2x2 matrix into a product of an orthogonal matrix and a symmetric positive semi-definite matrix.
Last updated: March 2026 | By ForgeCalc Engineering
Calculation Steps
Polar decomposition writes a matrix as a pure rotation or reflection multiplied by a symmetric stretching matrix. It helps separate direction from scaling.
Example: A = [[2, 1], [1, 2]] can be decomposed into U and P.
What does U represent?
U represents the orthogonal part, which preserves length and angle.
What does P represent?
P represents the symmetric stretching part of the matrix.
Does this accept decimals?
Yes. Any finite real matrix entries are accepted.
Is the decomposition unique?
For many matrices, the polar decomposition is unique under the standard conditions.
Related Tools
Calculate adjoint matrix.
Find angle between vectors.
Find characteristic polynomial.
Cholesky factorization.
Expand determinant by cofactors.
Calculate cofactor matrix.