+ Reply to Thread
Results 1 to 6 of 6

Thread: Standard error of the sample standard deviation

  1. #1
    Points: 1,653, Level: 23
    Level completed: 53%, Points required for next Level: 47

    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Standard error of the sample standard deviation



    Hi, all

    Does anyone let me know the formula for "the standard error of the sample standard deviation" when no specific distribution is assumed for an i.i.d random sequence? I also want to know a (famous if possible) reference book or paper.

    Thanks a lot for your help.

  2. #2
    RotParaTon
    Points: 46,105, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardFrequent PosterActivity AwardCommunity Award
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,063
    Thanks
    211
    Thanked 1,605 Times in 1,375 Posts
    There is some helpful info here... http://mathworld.wolfram.com/SampleV...tribution.html

    If you really need a reference in a book... off the top of my head I know that in an exercise at the end of (chapter 4? maybe 5?) in Casella and Berger you're asked to show that the var(s^2) is what it is so you'd have the final result there.

  3. #3
    TS Contributor
    Points: 14,811, Level: 78
    Level completed: 91%, Points required for next Level: 39

    Posts
    2,295
    Thanks
    8
    Thanked 371 Times in 351 Posts
    Thanks Dason for reminding the useful textbook
    it is in the problem 5.8, page 257
    In part a) we are asked to show
    S^2 = \frac {1} {2n(n-1)} \sum_{i=1}^n\sum_{j=1}^n(X_i - X_j)^2, and use this result to derive
    Var[S^2] = \frac {1} {n} \left( E[(X - E[X])^4] - \frac {n - 3} {n - 1} E[(X - E[X])^2]^2 \right)

    Also note that since S^2 is an unbiased estimator of \sigma^2,
    the mean squared error and the variance is the same. See
    http://en.wikipedia.org/wiki/Mean_sq...error#Examples

    I have gone through a quite tedious way, which lead to the same result:
    (you can expand the answer above to see)

    S^2 = \frac {1} {n - 1} \sum_{k=1}^n(X_k - \bar{X})^2

    = \frac {1} {n - 1} \left(\sum_{k=1}^nX_k^2 - n\bar{X}^2 \right)

    = \frac {1} {n - 1} \left[\sum_{k=1}^nX_k^2 -\frac {1} {n} \left( \sum_{k=1}^n X_k^2 + 2\sum_{i=1}^{n-1}\sum_{j=i+1}^nX_iX_j \right) \right]

    = \frac {1} {n} \sum_{k=1}^nX_k^2 -\frac {2} {n(n-1)} \sum_{i=1}^{n-1}\sum_{j=i+1}^nX_iX_j

    Therefore, Var[S^2]

    = Var\left[\frac {1} {n} \sum_{k=1}^nX_k^2 -\frac {2} {n(n-1)} \sum_{i=1}^{n-1}\sum_{j=i+1}^nX_iX_j \right]

    = \frac {1} {n} Var[X_1^2]+ \frac {4} {n^2(n-1)^2} \sum_{i=1}^{n-1}\sum_{j=i+1}^n\sum_{k=1}^{n-1}\sum_{l=k+1}^nCov[X_iX_j,  X_kX_l] -\frac {4} {n^2(n-1)} \sum_{k=1}^n\sum_{i=1}^{n-1}\sum_{j=i+1}^nCov[X_k^2, X_iX_j]

    = \frac {1} {n} E[X_1^4] - \frac {1} {n} E[X_1^2]^2  + \frac {4} {n^2(n-1)^2} \frac {n(n-1)} {2} \left( Cov[X_1X_2,  X_1X_2] + 2(n-2)Cov[X_1X_2, X_1X_3] + \frac {n^2 - 5n + 2} {2} Cov[X_1X_2,X_3X_4] \right)
    -\frac {4} {n^2(n-1)} n \left( (n-1)Cov[X_1^2, X_1X_2]+ \frac {(n-1)(n-2)} {2} Cov[X_1^2, X_2X_3] \right)

    = \frac {1} {n} E[X_1^4] - \frac {1} {n} E[X_1^2]^2  + \frac {2} {n(n-1)} \left( E[X_1^2]E[X_2^2] - E[X_1]^2E[X_2]^2 +2(n-2)(E[X_1^2]E[X_2]E[X_3] - E[X_1]^2E[X_2]E[X_3]) \right)
    -\frac {4} {n(n-1)} \left( (n-1)(E[X_1^3]E[X_2] - E[X_1^2]E[X_1]E[X_2]) \right)

    = \frac {1} {n} E[X^4] - \frac {1} {n} E[X^2]^2 + \frac {2} {n(n-1)} E[X^2]^2 - \frac {2} {n(n-1)} E[X]^4 + \frac {4(n-2)} {n(n-1)} E[X^2]E[X]^2 - \frac {4(n-2)} {n(n-1)} E[X]^4
    - \frac {4} {n} E[X^3]E[X] + \frac {2} {n} E[X^2]E[X]^2

    = \frac {1} {n} E[X^4] - \frac {4} {n} E[X^3]E[X]+ \frac {3 - n} {n(n-1)} E[X^2]^2 + \frac {4(2n - 3)} {n(n-1)} E[X^2]E[X]^2 + \frac {2(3 - 2n)} {n(n - 1)}E[X]^4

  4. #4
    Super Moderator
    Points: 8,562, Level: 62
    Level completed: 38%, Points required for next Level: 188
    Dragan's Avatar
    Location
    Illinois, US
    Posts
    1,722
    Thanks
    0
    Thanked 127 Times in 113 Posts
    This short article may also be of some help:

    http://www.eecs.umich.edu/~fessler/p.../tr/stderr.pdf

  5. #5
    RotParaTon
    Points: 46,105, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardFrequent PosterActivity AwardCommunity Award
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,063
    Thanks
    211
    Thanked 1,605 Times in 1,375 Posts
    I'm giving you a thanks BGM because I remember doing that problem and there's no way I would subject myself to that again.

  6. #6
    Points: 1,653, Level: 23
    Level completed: 53%, Points required for next Level: 47

    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Smile


    Thank you for your perfect lecture.
    I would like to appreciate it very much.

+ Reply to Thread

Similar Threads

  1. Replies: 6
    Last Post: 01-18-2011, 01:26 AM
  2. Replies: 5
    Last Post: 10-28-2010, 06:04 PM
  3. Replies: 1
    Last Post: 10-16-2010, 09:04 AM
  4. Standard error of the sampling standard deviation
    By Taqman in forum Psychology Statistics
    Replies: 1
    Last Post: 06-09-2010, 10:24 AM
  5. Dummy variables, standard deviation, standard error
    By Fabio Pieri in forum Statistics
    Replies: 1
    Last Post: 02-04-2008, 09:56 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts








Advertise on Talk Stats