Given an arbitrary symmetric N-by-N matrix A, how can its original values be calculated from $P$?
$$ P = A'A$$
Both $A$ and $P$ have \( \frac{N^2-N}{2}+N \) degrees of freedom.
Edit: added the constraint that A is symmetric
|
1
1
|
Given an arbitrary symmetric N-by-N matrix A, how can its original values be calculated from $P$? $$ P = A'A$$ Both $A$ and $P$ have \( \frac{N^2-N}{2}+N \) degrees of freedom. Edit: added the constraint that A is symmetric |
|||||||||||||||||||||||
|
closed as too localized by Will Jagy, Yemon Choi, Andrew Stacey, S. Carnahan♦ Feb 27 2012 at 10:10 |
|
3
|
Well, that depends on the ground field.
|
||
|
|
|
-1
|
Since both A and P are symmetric, $$P=A'A=AA$$ $$A=Q_1D_1Q_1'$$ $$P=Q_2D_2Q_2'$$ $$Q_2D_2Q_2'=Q_1D_1Q_1'Q_1D_1Q_1'$$ $$Q_2D_2Q_2'=Q_1D_1^2Q_1'$$ where $Q_1$ is the eigenvectors of $A$, $Q_2$ is the eigenvectors of $P$, and $D_1$ and $D_2$ are diagonal. Thus, $$Q=Q_1=Q_2$$ $$D_2 = D_1^2$$ $$A = Q\sqrt{D_2}Q'$$ |
||
|
|