How would you accomplish this:
Show that if $A$ is a positive semi definite matrix and $B$ is a positive definite matrix, both $n\times n$, then there is a matrix $C$, also $n\times n$, such that $CBC' = I$ and $CAC'$ is a diagonal matrix.
I tried using the Cholesky factorization $B = U'U$, where $U$ is an upper triangular matrix. Then if we let $C = (U')^{-1}$, the first condition works. However I don't think its true that the second part works. Any thoughts?
Thanks
Consider $B = I$ and $A = \begin{bmatrix} 1 & 1 \\ 0 & 1\end{bmatrix}$. If $CBC' = I$, then $CC' = I$, so $C$ is a 2 x 2 orthogonal matrix, i.e., a rotation or a rotation and reflection. Neither of these will conjugate the matrix $A$ into diagonal form. So I don't believe that you can prove the thing you want to prove.
Did you leave out some condition, like $AB = BA$?