I am currently using different procedures to estimate the probability that a $D$-dimensional Gaussian random variable with mean $\mu$ and covariance $\Sigma$ lies within a sphere of radius $R$ that is centered about the origin. That is, I am estimating $P(|| X ||_2 < R)$ where $X \sim N(\mu, \Sigma)$ and $X \in \mathbb{R}^D$.
I am wondering whether there is a way to obtain the exact value of this probability analytically (i.e. without using numerical integration or Monte Carlo)? I currently have two basic approaches to follow:
Approach 1
Find a way to analytically evaluate the integral:
$\int_{x \in S} (2\pi)^{-\frac{D}{2}}|\Sigma|^{-\frac{1}{2}} \exp(-\frac{1}{2} (x-\mu)^T \Sigma^{-1} (x-\mu) dx $
over the spherical region:
$S = \{||x|| < R \} = \{x^Tx < R^2\}$
Approach 2
Exploit the fact that if
$x \sim N(\mu,\Sigma)$
then
$(x-\mu)^T \Sigma^{-1} (x-\mu) \sim \chi^2(D) $
This implies that
$P( (x-\mu)^T \Sigma^{-1} (x-\mu) < R^2 ) = P(\chi^2(D) < R^2)$
which is very simple to evaluate...
I am hoping that there is a way to use this fact in order to evaluate:
$P( x^T x < R^2) $