What is the distribution of the square of a non-standard normal random variable (i.e., the mean is not equal to 0 and the variance is not equal to 1)?
Asked
Active
Viewed 1.7k times
14
-
4This question has been answered here: http://stats.stackexchange.com/questions/67533/sum-of-noncentral-chi-square-random-variables – Greenparker Mar 12 '16 at 22:43
1 Answers
12
It is a scaled non-central chi-square distribution with one degree of freedom. More specifically, if $Z$ is a normal random variable with mean $\mu$ and variance $\sigma^2$, then $\frac{Z^2}{\sigma^2}$ is a non-central chi-square random variable with one degree of freedom and non-centrality parameter $\lambda=\left(\frac{\mu}{\sigma}\right)^2$.

Brent Kerby
- 2,303
- 11
- 11
-
The non-centrality parameter in the non-central chi square is the square of the mean of the normal distribution in question. What is the scaling factor that we multiply the non-central chi square by to account for the variance of the normal distribution not being equal to 1? – Thomas Mar 13 '16 at 19:44
-
-
To make it even more concrete for those of us who like concrete, to generate m random values of Z squared, in R you can use Z2 – Thomas Mar 14 '16 at 09:31