In the middle of trying to prove Schur's product theorem, I got stuck on trying to prove that a positive definite matrix A can be expressed as:
$\sum_d \lambda_d q_dq_d^T$
Given the eigendecomposition of $A = QLQ'$, we have that $Q^{-1} = Q'$, or that $Q$ is orthogonal.
$Q'$ is also orthogonal, because $Q'Q = (QQ')' = I' = I$.
We know that $Q'$ has orthogonal column vectors $q_i$ that are now the orthogonal row vectors $q_i$ on $Q$.
After matrix multiplication using sum notation on $QLQ'$, we have that:
$A = \begin{pmatrix}-q_{1}-\\-q_{2}-\\-q_{n}-\end{pmatrix} \begin{pmatrix}\lambda_1&0&0\\0&\lambda_2&0\\0&0&\lambda_n\end{pmatrix} \begin{pmatrix}|&|&|\\q_1&q_2&q_n\\|&|&|\end{pmatrix}$
$A_{ij} = \sum_k \lambda_kq_{ik}q_{jk}$
Are these two the same thing?:
$A_{ij} = \sum_k \lambda_kq_{ik}q_{jk}$ and $A = \sum_d \lambda_d q_dq_d^T$
My gut intuition says that my definition of $q_d$ is not the same as theirs. Perhaps the wikipedia proof https://en.wikipedia.org/wiki/Schur_product_theorem#Proof_of_positive_semidefiniteness 's notation meant the column vectors of $A$.
Could someone please point out where my logic went wrong here? Thank you!