If $X \sim N(0,1)$, does $Y=(X,X)^\prime$ have a bivariate normal distribution? If so (actually also if not), what is the joint density?
-
@Glen_b I'm very sorry for my poor explanatory skills. By (X,X)' I mean a column vector that has two rows and one column (I tried to express this using the ' to mean transpose the row vector). I'm wondering about the corner case of a bivariate normal (although this is my question, is it technically still a "bivariate normal"?) where there is perfect correlation between the elements. In this case, since X=X, there is perfect correlation. I know what the density of a bivariate normal is when there is not perfect correlation, but when there is perfect correlation I'm curious if the density exists – Xu Wang Oct 17 '16 at 19:57
-
Sorry to have initially misunderstood. I have made some small edits which make it clearer what you meant. It was actually the "multivariate" that threw me off, since I assumed X must have been a vector. – Glen_b Oct 17 '16 at 20:27
-
@Glen_b ah yes I understand now. bivariate is more specific and clear. – Xu Wang Oct 18 '16 at 14:58
-
Related: https://stats.stackexchange.com/q/263506/119261. – StubbornAtom Jun 25 '20 at 18:47
1 Answers
Two copies of the same normal variable stacked up in a vector yield a degenerate bivariate normal.
See wikipedia on the degenerate case of the multivariate normal
While it is a special case of the multivariate normal it doesn't have a bivariate density.
The variance-covariance matrix of $Y=(X,X)^\prime$ ($\text{Var}(Y)=\Sigma$) for a standard normal $X$ will be all ones.
As such you can't invert $\Sigma$ and must instead use a generalized-inverse in the exponent; you'll also need to redefine the determinant -- the ordinary determinant will be 0 -- to a pseudo-determinant, which in this case will give $1$.
The density will be zero everywhere but the line $y_1=y_2$ (but if you condition on being on that line it looks like a standard normal density)
If you consider the bivariate distribution in the orthogonal direction to that line you're looking at the density of the variable $Y_1-Y_2=X-X=0$ -- you have a degenerate "normal" with mean 0 and variance 0; it's in this direction we see that the density disappears (it's just a spike at 0).

- 257,508
- 32
- 553
- 939
-
Thank you! Interesting. Reading the wiki page basically says "it has a density but does not have a density", or more technically it has a density with respect to one measure but not with respect to another. – Xu Wang Oct 18 '16 at 14:59
-
Yeah, it doesn't have a bivariate density except in a degenerate sense (you can write it as a limit of a sequence of bivariate densities). – Glen_b Oct 19 '16 at 01:13