1

Question:

Let $(X_1,X_2,X_3)\sim N_3\left[\mathbf0, \begin{pmatrix}1&\rho_{12}&\rho_{13}\\\rho_{12}&1&\rho_{23}\\\rho_{13}&\rho_{23}&1\end{pmatrix} \right]$

Show that

(i) $$P(X_1>0,X_2>0,X_3>0)=\frac{1}{8}+\frac{\sin^{-1}\rho_{12}+\sin^{-1}\rho_{13}+\sin^{-1}\rho_{23}}{4\pi}$$

(ii) $$1+2\rho_{12}\rho_{13}\rho_{23}\ge \rho_{12}^2+\rho_{13}^2+\rho_{23}^2$$

My problem: I was solving test papers when I found this..

I had this sum done for a Bivariate Normal Distribution.

(X1, X2)~ BN( 0, 0,sigma_1^2, sigma_2^2, rho )

enter image description here enter image description here enter image description here

I know the formula of a Trivariate Normal Distribution.

enter image description here

How can I prove the given relation (i) in the question, in a method like the Bivariate one was solved ?

And how do I solve part (ii) ? Please help. Thank you.

P db
  • 41
  • 8
  • 1
    (ii) is solved at https://stats.stackexchange.com/questions/72790, which relates it to the determinant of the correlation matrix. For (i), consider transforming the variables into a standard Normal distribution. (The formula is recognizable as a solid angle subtended by the transformed first octant, divided by the total angle $4\pi.$) Working directly from your formula for the PDF is likely to be a long and painful process. – whuber Nov 28 '18 at 18:44
  • @whuber The marginals are already standard normal, aren't they? – StubbornAtom Nov 29 '18 at 18:11
  • @Stubborn They are, but the trivariate distribution is not. By "standard Normal" I meant standard *Trivariate* Normal: that is, the mean is $(0,0,0)$ and the variance is the unit matrix. – whuber Nov 29 '18 at 20:20
  • @Stubborn Let me try again: the desired transformation will re-express the event $X_1\gt0,X_2\gt 0,X_3\gt 0$ in an eigenbasis of the covariance matrix. In that representation the distribution is spherical, showing that the answer is simply the fractional solid angle subtended by the transformed first octant. (Nice derivation in your answer, BTW, and +1 for that.) – whuber Nov 29 '18 at 20:30

1 Answers1

3

For the first question, indeed there is no need to work directly with the pdf of $(X_1,X_2,X_3)$.

Let the desired probability be $$p=P(X_1>0,X_2>0,X_3>0)$$

Analogous to the two-variable case, we have $$(X_1,X_2,X_3)\stackrel{d}{=}(-X_1,-X_2,-X_3)$$

So due to symmetry we must have

$$p=P(-X_1>0,-X_2>0,-X_3>0)=P(X_1<0,X_2<0,X_3<0)\tag{1}$$

Continuing from $(1)$,

\begin{align} 1-p&=P\left[\{X_1>0\}\cup\{X_2>0\}\cup\{X_3>0\}\right] \\\\&=P(X_1>0)+P(X_2>0)+P(X_3>0)-P(X_1>0,X_2>0) \\\\&\quad-P(X_2>0,X_3>0)-P(X_1>0,X_3>0)+p \\\\&=\frac{3}{2}-\left[\frac{3}{4}+\frac{1}{2\pi}(\sin^{-1}\rho_{12}+\sin^{-1}\rho_{23}+\sin^{-1}\rho_{13})\right]+p \end{align}

Or,

$$\\1-\left[\frac{3}{4}-\frac{1}{2\pi}(\sin^{-1}\rho_{12}+\sin^{-1}\rho_{23}+\sin^{-1}\rho_{13})\right]=2p$$

Finally,

$$p=\frac{1}{8}+\frac{1}{4\pi}(\sin^{-1}\rho_{12}+\sin^{-1}\rho_{23}+\sin^{-1}\rho_{13})$$


As a side note, I think that for the derivation of the expression for $P(X_1>0,X_2>0)$, it suffices to evaluate the corresponding double integral using a polar transformation. The details are not very messy. What you have done is perfectly fine by the way.

StubbornAtom
  • 8,662
  • 1
  • 21
  • 67
  • Could you please elucidate where the term with $\sin^{-1} \rho_{jk}$ comes from in the square brackets in the equation for $1-p$? It seems to have magically appeared in going from the second equality to the third in that equation. Many thanks. – Confounded Nov 10 '21 at 15:07
  • I have used $P(X_1>0,X_2>0)=\frac14 + \frac1{2\pi}\sin^{-1}\rho_{12}$ and similarly for the other pairs of random variables. This was derived by the OP in their post. See e.g. https://math.stackexchange.com/q/1687795/321264, https://math.stackexchange.com/q/255368/321264. – StubbornAtom Nov 10 '21 at 15:14
  • Thank you for your reply. One more question: how come the sum of probability of unions and probability of intersections is equal to $1$, which is what seems to be saying in $1 - p = P[X_1 >0 \cup X_2 > 0 \cup X_3 > 0]$? – Confounded Nov 10 '21 at 16:12
  • 1
    @Confounded Using [De-Morgan's laws](https://en.wikipedia.org/wiki/De_Morgan%27s_laws), $p=P(\bigcap_i A_i)=1-P(\bigcup_i A_i^C)$ for some events $A_i$. – StubbornAtom Nov 10 '21 at 16:30
  • 1
    Thank you for your reply, but the article implies that De-Morgan's law is, for 2 sets, $P(\overline{A \cap B}) = P(\overline{A} \cup \overline{B})$ - how does this then give the result that you are using? Is it combined with $P(A \cap B) + P(\overline{A \cap B}) = 1$? – Confounded Nov 10 '21 at 16:37