Suppose we have a $N\times N$ symmetric-positive-definite matrix $A$, representing an ellipsoïd in $N$ dimensional space. How to find the matrix $A_{xy}$ corresponding to orthogonal projection of ellispoid on $xy$-plan ?
I have already consulted this pages, they were not that helpful:
How to obtain the equation of the projection/shadow of an ellipsoid into 2D plane? https://math.stackexchange.com/a/1866994/1054066
edit after some suggestions : Schur complement method seems to work in 3 dimensions:
here's an exemple:
suppose $A = \begin{pmatrix} 1 & 0.5 & -1 \\ 0.5 & 2 & 0.5 \\ -1 & 0.5 & 3 \end{pmatrix}$
than Schur complement method says that $A_{xy} = \begin{pmatrix} 1 & 0.5 \\ 0.5 & 2\end{pmatrix} - \frac{1}{3} \begin{pmatrix} -1 \\ 0.5\end{pmatrix} \begin{pmatrix} -1 & 0.5\end{pmatrix} = \begin{pmatrix} 0.67 & 0.67 \\ 0.67 & 1.92\end{pmatrix}$
Here's the result :
but I dont see how to make it work in 5 dimansional space. The goal is to project 5D-ellipsoid on xy-plane.


