I'm looking for the assymptotic ($n\rightarrow \infty$) value of (the log of the determinant of) the covariance of the $\alpha$% of observations with smallest Eucledian distance to the origin in a sample of size $n$ drawn from, say, a bivariate standard Gaussian.
--The hyper-volume of an ellipse is proportional to the determinant of its covariance matrix, hence the title.--
--By standard bivariate Gaussian, I mean $\mathcal{N}_2(0_2,\pmb I_2)$ where $0_2$ is a vector of 0 of length 2 and $\pmb I_2$ is the rank 2 identity matrix.---
It's easy to see by simulations than when $\alpha=52/70$ the number is around $\approx -1.28$:
library(MASS)
n<-10000
p<-2
x<-mvrnorm(n,rep(0,p),diag(2))
h<-ceiling(0.714286*n)
p<-ncol(x)
w<-mahalanobis(x,rep(0,p),diag(p),inverted=TRUE) #These are eucledian distances, because the covariance used is the identity matrix
s<-(1:n)[order(w)][1:h]
log(det(cov(x[s,])))
but I don't recall how to obtain an exact expression (or failing that, a better approximation) for this.