2

I have three standard normal variables, $X_1$, $X_2$, and $X_3 \sim N(0,1)$.

Let $Y_1 = X_1 - X_2$, $Y_2 = X_3 - \bar X_2$, $Y_3 = \bar X_3$

Where $\bar X_2 = (X_1 + X_2)/2$ and $\bar X_3$ is found in the same way.

Show that $Y_1$, $Y_2$, $Y_3$ have a multivariate normal distribution, find $\mu$ and $\Sigma$.

Can someone please guide me on this or point me to a textbook which illustrates these types of transformations?

Thank you

Edit: Thanks for editing my math, Michael.

TZakrevskiy
  • 22,980
Stephen
  • 121

1 Answers1

1

$\newcommand{\cov}{\operatorname{cov}}\newcommand{\var}{\operatorname{var}}$ $$ \var(X_1-X_2) = \var(X_1)+\var(-X_2) = \var(X_1) + (-1)^2\var(X_2). $$ \begin{align} \cov(Y_1,Y_2) & = \cov(X_1-X_2,X_3 - \bar X_2) \\[6pt] & = \cov(X_1,X_3-\bar X_2) - \cov(X_2,X_3-\bar X_2) \\[6pt] & = \cov(X_1,X_3) - \cov(X_1,\bar X_2) - \cov(X_2,X_3) + \cov(X_2,\bar X_2). \end{align}

And $$ \cov(X_1,\bar X_2) = \cov\left( X_1, \frac{X_1+X_2} 2 \right) = \frac 1 2 \left( \cov(X_1,X_1)+\cov(X_1,X_2) \right), $$ etc.

Summary: You can get all of the variances and covariances by using $\cov(U,V+W)$ $= \cov(U,V)+\cov(U,W)$ and $\cov(U,V) = \cov(V,U)$ and $\cov(cU, V) = c\cov(U,V)$.

You can also use matrix methods, but I might prefer to hear more from you before going into that.

  • Thanks. So we can find all of the entries of $\Sigma$ by doing these calculations and the expected values are easy enough to find. Then we have each vector that we need and can use the known pdf of a multivariate normal. It is that straightforward, right? – Stephen Sep 19 '15 at 19:35
  • 1
    Yes. ${}\qquad{}$ – Michael Hardy Sep 19 '15 at 20:31