Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

Let Xi be independent, normally distributed random variables, for 1≤i≤N. What is the distribution of Ym=N-1Σ(Xi)m?

Every high school student knows part of the answer. The mean of Ym is the mth moment of the normal distribution, and the variance of Y1 is 1/N. I'm interested in the width of the distribution of Ym. How does its variance scale with the sample size N? (Is variance a useful measure?) I'm especially interested in the large sample limit, with m a small integer. Knowing where to look it up would be helpful.

share|improve this question
1  
Did you consider using Central Limit Theorem? $X_i^m$ will be iid., so $\sqrt{N}(Y^{(m)}-EX_1^m)\to N(0,var(X_1^m))$. You can find $EX_1^m$ and $Var(X_1^m)=EX_1^{2m}-(EX_1^m)^2$ by differencing the characteristic function of $X_1$ and evaluating it at zero, which for normal variables is not that hard to do. As a bonus, all the higher moments will be expressed as the functions of the first and second moment. – mpiktas Oct 31 '11 at 13:01
1  
Why is the variance of Y $1/(n-1)$ ? Is X standard normal? And shouldn't it be $n$ in the denominator? – JohnRos Oct 31 '11 at 17:04
Rodney, to post a comment you need to log in with the same id used to create the post. – whuber Nov 1 '11 at 1:10
John: you're right. mpiktas: I didn't, but I should have. Thank you. – Rodney Polkinghorne Nov 1 '11 at 6:47
@mpiktas You write "As a bonus, all the higher moments will be expressed as the functions of the first and second moment" Does "bonus" mean that it is possible to derive formulas for the higher moments that do not involve the first or second moments, while, in contrast, the characteristic function approach has the advantage of producing formulas that express the higher moments in terms of the first and second moments? – Dilip Sarwate Nov 1 '11 at 11:05

1 Answer

up vote 2 down vote accepted

I'm interested in the width of the distribution of $Y_m$. How does its variance scale with the sample size $N$?

$\text{var}(X_i^m) = E[X_i^{2m}] - (E[X_i^m])^2$ is easily evaluated from the moment-generating function $\exp(\sigma^2t^2/2 + \mu t)$ of the $N(\mu, \sigma^2)$ random variable $X_i$ (or from the characteristic function as suggested in the comment by mpiktas). Since this variance does not depend on $i$, let us denote it by $\text{var}(X^m)$. Then, since the $X_i^m$'s are independent random variables (they are functions of independent random variables), we have $$\text{var}(Y_m) = \text{var}\left(\frac{1}{N}\sum_{i=1}^N X_i^m\right) = \frac{1}{N^2}\left(\sum_{i=1}^N \text{var}(X_i^m)\right) = \frac{1}{N}\text{var}(X^m)$$ Note that the displayed equation above does not require that the $X_i$ be normal random variables. For i.i.d. random variables $Z_i$ (with finite second moment), the variance of $N^{-1}\sum_i Z_i$, the average of $N$ variables, is always $N^{-1}\text{var}(Z)$, that is the variance always scales as $1/N$. For general distributions, the Chebyshev inequality can be used to obtain a weak bound on the width of the distribution. See here for a related discussion.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.