M BUZZ CRAZE NEWS
// general

Singular value decomposition of identity matrix

By Daniel Rodriguez
$\begingroup$

If you run a SVD on a identity matrix, $I = U S V^T$, will the matrix $S$ also be an identity matrix?

$\endgroup$ 4

1 Answer

$\begingroup$

In general, given any $m \times n$ matrix $A$ with its SVD

$$ A = U \Sigma V^T $$

the matrix $\Sigma$ is a diagonal matrix with singular values of $A$ on the diagonal entries. Furthermore, these non-zero singular values are the square roots of the eigenvalues of $AA^T$ (or $A^TA$ which has the same set of eigenvalues).

Now in your case, $I^TI = I$, and the only eigenvalue of $I$ is $1$, therefore, the singular value of $I$ is $1$ which implies that $\Sigma = I$.

$\endgroup$

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy