1

Consider independent random variables $\mathbb{P}(X=-1) = \mathbb{P}(X=1) = 0.5$ and $Y \sim \text{N}(0,1)$ and let $c \neq 0$ be a real constant. How do I prove that $cXY$ is Gaussian ? What is the expectation and variance?

Ben
  • 91,027
  • 3
  • 150
  • 376
user8714896
  • 640
  • 2
  • 12
  • You ask multiple questions. I believe they are variously answered at https://stats.stackexchange.com/questions/16608, https://stats.stackexchange.com/questions/451850, and https://stats.stackexchange.com/questions/429868. If you still have a related question, please feel free to edit your post. – whuber Jun 08 '21 at 15:24

1 Answers1

4

$Z=XY$ is $cY$ with $0.5$ probability and $-cY$ with $0.5$ probability. $cY=T$ is a Gaussian, so as $-T$, because a scalar non-zero multiplication with a Gaussian produces a Gaussian. Also, because $T$'s PDF is symmetric around $0$, they have the same PDF, i.e. $f_T(t)=f_{-T}(t)$. Using mixture properties, you'll have $$f_Z(z)=0.5\times f_T(z)+0.5\times f_{-T}(z)=f_T(z)$$

$f_T(z)$ is Gaussian PDF with mean zero and variance $c^2$, so is $f_Z(z)$.

gunes
  • 49,700
  • 3
  • 39
  • 75