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.

I'm preparing a presentation about parallel statistics. I plan to illustrate the formulas for distributed computation of the mean and variance with examples involving center of gravity and moment of inertia. I'm wondering if there is a physical interpretation of the third or higher central moments that I can use to help illustrate the general formula.

share|improve this question
Do you mean like the "graphical moments" illustrated here? – whuber Jul 11 '11 at 21:03
That relates the properties of moments to graphs of PDFs, but is not useful for visualizing computations done on moments. I'd like to be able to, for example, write Welford's algorithm (en.wikipedia.org/wiki/…) on the board, and then draw a picture and say "This is $x_n-\overline{x_n}$" and have the equality become somewhat obvious. Also at that link is a streaming algorithm for the mean. It takes a few seconds to see why the formula works, but becomes immediately obvious if I draw it as a center of gravity problem. – James Koppel Jul 11 '11 at 22:00
If you must preserve the interpretation of $x$ as a length, then anything above third moments will require too many dimensions to illustrate! In spirit, your question and comment are like the Ancient Greek drive to cast all arithmetic in terms of geometry. That indeed provides insight, but it also limits the scope of what can be done to a small number of dimensions (0 through 3). Creative use of graphics can help us visualize higher dimensions (and therefore, perhaps with higher moments). Thus I think you shouldn't dismiss graph-based illustrations out of hand. – whuber Jul 11 '11 at 22:16
I'm not sure what you mean by physical interpretation. (Perhaps it's that I don't think about mean or variance in terms of physical quantities). If you're just trying to to reprise the Welford algorithm, is it mathematically anything more than the insight that to compute statistics of the form $T = \frac{1}{N} \sum_{i=1}^n f(x_i)$, you can always compute them recursively via: $\;T_1 = f(x_1)$, and $T_i = ((N-1)\cdot T_{i-1} + x_i) / N \;\;$ ? Raw moments can always be computed this way, and formulas for centered moments can (presumably) be derived from these? – jpillow Jul 12 '11 at 5:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.