I am tutoring a student and I am unable to determine what "related" means in this problem. Im thinking just the Z and students t are normally distributed but arent chi squared and the F test related to a normal probability distribution even though they are not normally distributed? I read a scientific paper on the G distribution and still cant tell if it is normally distributed or "related" to a normal distribution. Neither can i make sure about morphets q. Can anyone enlighten me please.
Choose all probability distributions which are theoretically related to the normal probability distribution.
A) G
B) Morphet's Q
C) Chi Square
D) Z
E) Student's t
F) F
I am claiming that only Z and Students t are normally distributed
Student's t, Chi-squared, and F are 'related' to normal, even though they are not normally distributed.
Let $Z_0, Z_1, \dots, Z_n$ be independently standard normal. Then $Q = \sum_{i=1}^n Z_i^2 \sim \mathsf{Chisq}(n),$ the chi-squared distribution with $n$ degrees of freedom.
Also, $T = \frac{Z_0}{\sqrt{Q/n}} \sim \mathsf{T}(n),$ Student's t distribution with $n$ degrees of freedom.
Finally, if $Q_1 \sim \mathsf{Chisq}(n)$ and independently $Q_2 \sim \mathsf{Chisq}(m),$ then $F = \frac{Q_1/n}{Q_2/m} \sim \mathsf{F}(n,m),$ Snedecor's F distribution with numerator degrees of freedom $n$ and denominator degrees of freedom $m.$
$Z$ is a frequently used notation for $\mathsf{Norm}(0,1),$ the standard normal distribution. The letter $Q$ is my personal favorite notation for a chi-squared distribution.
For more details and graphs for various parameters, you can find Wikipedia pages on each of these distributions. You are on your own with $G$ and Morphet's $Q$.
Here are histograms of 100,000 realizations of each of $\mathsf{Chisq}(4),\, \mathsf{T}(5), \, \mathsf{F}(15,20)$ generated as discussed above. Red curves are the density functions of these distributions. [Formal proofs use moment generating functions and multivariate transformations.]
Note: For archival purposes, the R code used to make the plots is shown below.