|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Suppose you collect a large quantity of numbers, randomly distributed
over the interval 0..k.
Assuming these numbers are truly random, and the distribution is truly
uniform, presumably the arithmetic mean should be k/2.
Can anybody tell me what the value of some other statistics should
hypothetically be? (Geometric mean, harmonic mean, quadratic mean,
standard deviation...)
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Invisible wrote:
> Can anybody tell me what the value of some other statistics should
> hypothetically be? (Geometric mean, harmonic mean, quadratic mean,
> standard deviation...)
I would think if you look up the definitions and then put in the set of
numbers 1..k, you should come up with the answer, yes? Or is that not how
statistics works?
http://en.wikipedia.org/wiki/Standard_deviation
--
Darren New, San Diego CA, USA (PST)
Forget "focus follows mouse." When do
I get "focus follows gaze"?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Darren New wrote:
> Invisible wrote:
>> Can anybody tell me what the value of some other statistics should
>> hypothetically be? (Geometric mean, harmonic mean, quadratic mean,
>> standard deviation...)
>
> I would think if you look up the definitions and then put in the set of
> numbers 1..k, you should come up with the answer, yes? Or is that not
> how statistics works?
I think he is looking for the value predicated based on the probability
distribution, not the estimated value for one particular set of data.
Quadratic mean and standard deviation should be fairly easy to find, as
here:
http://mathworld.wolfram.com/UniformDistribution.html
Quadratic mean = sqrt(k^2/3)
Standard deviation = sqrt(k^2/12)
(Quite easy to compute with a simple integral, too).
Geometric and harmonic mean are more difficult... Because they are not
commonly useful as far as I'm aware. But I guess the integrals can't be
too complex for these either...
--
Vincent
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Vincent Le Chevalier wrote:
> Darren New wrote:
>> Invisible wrote:
>>> Can anybody tell me what the value of some other statistics should
>>> hypothetically be? (Geometric mean, harmonic mean, quadratic mean,
>>> standard deviation...)
>>
>> I would think if you look up the definitions and then put in the set
>> of numbers 1..k, you should come up with the answer, yes? Or is that
>> not how statistics works?
>
> I think he is looking for the value predicated based on the probability
> distribution, not the estimated value for one particular set of data.
That's what I understood. If he has a linear set of data, wouldn't it
theoretically be equal quantities of each value, and hence wouldn't the
statistics work to calculate the value from just one set of numbers per k?
> Quadratic mean and standard deviation should be fairly easy to find, as
> here:
> http://mathworld.wolfram.com/UniformDistribution.html
> Quadratic mean = sqrt(k^2/3)
> Standard deviation = sqrt(k^2/12)
> (Quite easy to compute with a simple integral, too).
Oh, you mean "closed form". Yes, I guess that might be a little harder to
figure out without the math to close over the expression. (I'm kind of
curious where that 1/12'th comes from.)
I often have (unimportant, idle) questions like "how many times can I expect
to roll a die before I've seen every face" or "... before a 1 comes up" or
some such. Never bothered to actually write it down somewhere once I looked
it up, tho. I suspect if I had to figure it out myself, I'd remember it.
--
Darren New, San Diego CA, USA (PST)
Forget "focus follows mouse." When do
I get "focus follows gaze"?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Darren New wrote:
>
> That's what I understood. If he has a linear set of data, wouldn't it
> theoretically be equal quantities of each value, and hence wouldn't
> the statistics work to calculate the value from just one set of
> numbers per k?
Ah yes, I guess that would be like trying to numerically find the value
of the integrals instead of finding the closed form...
>> Standard deviation = sqrt(k^2/12)
>
> (I'm kind of curious where that 1/12'th comes from.)
Well... It's 1/3 - 1/2 + 1/4 :-D
standard deviation = sqrt(\int_0^k f(x) (x-m) dx), where f is the
probability density and m the mean of the density.
Here f(x) = 1/k and m=k/2, so
\int_0^k f(x) (x-m)^2 dx = \int_0^k (x-k/2)^2/k dx
= 1/k \int_0^k (x^2 - k x + k^2/4) dx
= 1/k (k^3/3 - k/2 k^2 + k^2/4 k)
= k^2/3 - k^2/2 + k^2/4
= k^2 (1/3 - 1/2 + 1/4)
= k^2/12
(There's probably a shorter way around this one but it works)
--
Vincent
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Vincent Le Chevalier wrote:
> Ah yes, I guess that would be like trying to numerically find the value
> of the integrals instead of finding the closed form...
Yes. I'm just so clueless about statistics I'm not sure you can just "assume
the distribution really *is* uniform". :-)
> Well... It's 1/3 - 1/2 + 1/4 :-D
Ah, bits from the powers of the integral. OK. Thanks.
--
Darren New, San Diego CA, USA (PST)
Forget "focus follows mouse." When do
I get "focus follows gaze"?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Vincent Le Chevalier wrote:
> Quadratic mean and standard deviation should be fairly easy to find, as
> here:
> http://mathworld.wolfram.com/UniformDistribution.html
> Quadratic mean = sqrt(k^2/3)
> Standard deviation = sqrt(k^2/12)
OK, thanks.
> Geometric and harmonic mean are more difficult... Because they are not
> commonly useful as far as I'm aware.
Yeah, fair enough. I was just wondering if they had a simple formula.
Basically I'm trying to prove that my psuedo-random number generator
generates numbers which are at least psuedo-random...
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Invisible wrote:
> Basically I'm trying to prove that my psuedo-random number generator
> generates numbers which are at least psuedo-random...
Is there any reason you're not using one of the existing test suites for
this?
http://www.phy.duke.edu/~rgb/General/dieharder.php
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
>> Quadratic mean = sqrt(k^2/3)
>> Standard deviation = sqrt(k^2/12)
>
> OK, thanks.
>
>> Geometric and harmonic mean are more difficult... Because they are not
>> commonly useful as far as I'm aware.
>
> Yeah, fair enough. I was just wondering if they had a simple formula.
>
> Basically I'm trying to prove that my psuedo-random number generator
> generates numbers which are at least psuedo-random...
Obviously the results from your RNG are not going to *exactly* match the
formulas above, so how do you plan to figure out how far away is acceptable?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
scott wrote:
> Obviously the results from your RNG are not going to *exactly* match the
> formulas above, so how do you plan to figure out how far away is
> acceptable?
It depends on the sample size. The more random numbers you generate, the
closer the computed values should match the expected values, although
still not exactly.
So far, the generator produces histogram and modulus results that differ
from the expected values by about 0.1% of the sample size, which seems
fairly reasonable to me.
Of course, it should *also* be possible to statistically compute the
probability of a difference from the expected value of a given size.
(E.g., isn't the sample mean supposed to be normally distributed around
the true mean or something?) But I don't know how to do that yet. So
far, all I've done is compute numbers and observe that they seem to get
closer to the expected values when I increase the sample size.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |