Let $X$ and $Y$ be random variables such that $0<\sigma^2_X<\infty$ and $0<\sigma^2_Y<\infty$. Suppose that $U=aX+b$ and $V=cY+d$, where $a \not= 0$ and $c \not= 0$. Show that $\rho(U,V)=\rho(X,Y)$ if $ac>0$, and $\rho(U,V)=-\rho(X,Y)$ if $ac<0$.
Correlation($U,V$)=Correlation($X,Y$)
-
1Have you tried anything? – 2017-02-16
-
0Not yet. I'm really lost, so pointers to begin with would help a ton! – 2017-02-16
2 Answers
Might be best to start with covariance and $a,c > 0$. $$Cov(U,V) = Cov(aX+b, cY+d) = Cov(aX,cY) + Cov(aX,d) + Cov(b,cY) + Cov(b,d)\\ = Cov(aX,cY) = acCov(X,Y).$$ Then $\rho(U,V) = Cor(U,V) = \frac{Cov(U,V)}{SD(U)SD(V)}.$
Finally, finish by finding $\sigma_U = SD(U)$ and $\sigma_V = SD(V).$
I hope my notation is sufficiently similar to notation in your text so that you can follow this.
-
0$SD(U)=a\sigma_X$ and $SD(V)=c\sigma_Y$ right? – 2017-02-16
-
0Right. $Var(aX) = a^2Var(X).$ Then take square root to get SD. – 2017-02-16
\begin{eqnarray*} \displaystyle\rho(U, V) & = & Cov\left(\frac{U-\mathbb{E}(U)}{\sigma_U}, \frac{V-\mathbb{E}(V)}{\sigma_V}\right) \\ & = & Cov\left(\frac{aX+b-a\mathbb{E}(X)-b}{|a|\sigma_X}, \frac{cY+d-c\mathbb{E}(Y)-d}{|c|\sigma_Y}\right) \\ & = & \frac{ac}{|a||c|}Cov\left(\frac{X-\mathbb{E}(X)}{\sigma_X}, \frac{Y-\mathbb{E}(Y)}{\sigma_Y}\right) \\ & = & \frac{ac}{|a||c|}\rho(X, Y) \\ & = & \begin{cases} \rho(X, Y) & \text{ if } ac > 0 \\ -\rho(X, Y) & \text{ if } ac < 0 \end{cases} \end{eqnarray*}
-
1Elegant development (+1) – 2017-02-16