Take $A\in R^{kxk}$. Suppose that its eigenvalues are equal to its singular values. Then show that $A$ is symmetric and positive semi-definite. I've found sources stating it but I haven't managed to find a proof anywhere. I've tried a bunch of things with little success. I've been hammering at this problems for days now and can't seem to figure out how to prove it. Maybe I misinterpreted and there are some valid counterexamples
The reverse direction is a well known fact with an easy proof, I've seen it stated many times. If $A$ is positive semi-definite then its singular values are its eigenvalues. $A$ would have an orthogonal diagonalization with positive eigenvalues. It's easy to construct a valid SVD. I want to prove this other direction so I can have an equivalence
An interesting yet failed attempt
Let's assume $A$ is diagonalizable. Thus we have two factorizations
- $A$ = $UDV^t$
- $A$ = $BDB^{-1}$
We want to prove that we can write $A = QDQ^t$ with $Q$ an orthogonal matrix.
Take $x$ a normalized eigenvector with maximum eigenvalue $\lambda_1$. $$\lambda_1^2 = ||Ax||_2^2 = ||UDV^tx||_2^2 = ||DV^tx||_2^2 $$
We can write $x$ using the basis given by the columns in $V$, that is $x = \sum_i \alpha_i v_i $. But, as V is an orthogonal matrix we also have that $\sum_i \alpha_i^2 = 1$
Combining these properties $$ \lambda_1^2 = ||DV^tx||_2^2 = \sum_i \alpha_i^2 \lambda_i^2 $$
So we conclude that $\alpha_i = 0$ for $\lambda_i \neq \lambda_1$. Thus the eigenspace given by the biggest eigenvalue $\lambda_1$ is a subset of the space spanned by the first $k$ columns of $V$ matching that eigenvalue in the SVD decomposition. And then I got stuck, similar argument would also prove the same thing for the smallest eigenvalue but that's not enough. I also don't think this is a good direction
– SVDieseas Dec 31 '23 at 17:17$\text{trace}(A^2) = \sum \lambda_i^2$ wouldn't this asume that it is diagonalizable? (might be wrong here)
Could you expand a bit on how you derive that inequality from Cauchy-Schwarz?
Why does equality imply $A = \eta A^t$?