I have a $k$-dimensional ellipsoid defined as
$\left(x-\mu\right) C \left(x-\mu\right)'<1$.
As an example assume $k=3$ (in practice my $k>100$) and
$ C = \begin{pmatrix} c_{1,1} & c_{1,2} & c_{1,3} \\ c_{2,1} & c_{2,2} & c_{2,3} \\ c_{3,1} & c_{3,2} & c_{3,3} \\ \end{pmatrix}$
I want to plot a two-dimensional view of it, say the first two of the $k$ dimensions. How does the $C'$ of the reduced ellipsoid look that I need to plot? I guess its not just
$ C' = \begin{pmatrix} c_{1,1} & c_{1,2} \\ c_{2,1} & c_{2,2} \\ \end{pmatrix}$
at least the resulting ellipse looks very big compared to points I draw uniformly from within the high-dimensionsinal ellipsoid (and then look at the plot of the points' first two dimensions).
Thanks for any hint!