Could you please assist me on this example ?
We suppose that $X = (X_1, X_2) \sim N_2(\mu, \Sigma) $ where: $$ \mu = (1, -\frac{1}{2}) $$
$$ \Sigma = \begin{bmatrix} 1 & -3 \\ -3 & 2 \end{bmatrix} $$
I need to find combination $$ Y = a_1 X_1 + a_2 X_2 $$ and Y must be
$$ Y \sim N_1(0,1) $$
My observations:
I was resolving similar issue where I knew the constants $a_1, a_2$ and didn't know the resulting distribution and it's values. According to mentioned example, I would now substitute for $X_1 = 1$ and $X_2 = -\frac{1}{2}$ based on $\mu$ values: $$ Y = a_1 (1) + a_2 (-\frac{1}{2}) $$
In the previous issue I used this formula $ Y \sim N_p(\mu, A \Sigma A^T) $ where $A$ were constants $\begin{bmatrix} a_1 & a_2 \end{bmatrix}$ and for $\mu$ I just computed $Y = a_1 (1) + a_2 (-\frac{1}{2})$ with actual constant values.
I assume I should also achieve to get this matrix: $$ \Sigma = \begin{bmatrix} 1 & \rho \\ \rho & 1 \end{bmatrix} $$
But I don't know how.
Could you please explain me how to resolve this ? I just don't see the logic inside.
If $Y$ is the sum of two scalar random variables, it can only have a univariate distribution. $$Y\sim\mathcal N_1(0,1)$$
So you are looking at $\mathsf E(a_1X_1+a_2X_2)= 0$ and $\mathsf {Var}(a_1X_1+a_2X_2)=1$.
Now you know the mean vector, $\mu=(1, -\tfrac 12)$ gives us an equation of two unknowns: $$a_1-\tfrac{a_2}2 =0 \tag{1}$$
So you must use the covariance matrix $\Sigma =\left[\begin{smallmatrix}~~1 & -3 \\[1ex] -3 & ~~2\end{smallmatrix}\right]$ to obtain the second of two simultaneous equations.
$$\color{orange}{\boxed{\qquad\qquad?}} = 1 \tag{2}$$
You can do this.
$\Diamond$