- 23,899
- 11,352
Before I chose my answer, I looked at the poll results, then chose the number that had the most votes at the time...
BobG said:I'm kind of disappointed in my random number. I kind of like monogamous relationships with my numbers.
Redbelly98 said:Hey, wait, why are we obsessing about how we choose the number? As I interpret the poll instructions, "choose a random number", the OP has provided a list of random numbers that we are to choose from in any manner we see fit.
Office_Shredder said:Ooh, nice catch. The ambiguity here could destroy the integrity of the results. We'll have to create an independent commission to investigate further
Redbelly98 said:Hey, wait, why are we obsessing about how we choose the number? As I interpret the poll instructions, "choose a random number", the OP has provided a list of random numbers that we are to choose from in any manner we see fit.
Now if the instructions had said "Randomly choose from the following list of numbers", that would be a different story.
p.s. in all seriousness, I have picked 7 using Excel's random number generator.
Office_Shredder said:Ooh, nice catch. The ambiguity here could destroy the integrity of the results. We'll have to create an independent commission to investigate further
LowlyPion said:We'll need a Random Number Czar then to mediate.
Is "fine granular stuff from a burst stress ball" an acceptable substitute for sand?AUMathTutor said:How about this for a fair random process?
You grab a handful of sand. You then count how many grains of sand there are. Take the number and the remainder after dividing it by 20 should not be biased.
Here's my reasoning: the bounds aren't fixed on how many grains there can be. This means that there is no inherent bias in the range of values. You will usually get many more than 20 grains of sand, so the part that's actually deciding the outcome is sufficiently masked.
Are there problems with that?
flatmaster said:My probability is a little rusty. What sort of discrete probability distribution would theoretically be expected here considering it was truly random? Poisson Distribution? A Bayesian analysis could tell us the probability that this data is actually a random distribution. Might do that later.
qntty said:If it was truly random, a uniform distribution would be expected, would it not?
EnumaElish said:Is "fine granular stuff from a burst stress ball" an acceptable substitute for sand?
my @numb = (1 .. 20);
my $num = int(rand(19));
print @numb[$num];
Moonbear said:So, how do you know a number is generated randomly? Wouldn't even a so-called random number generator need to have some sort of rules to generate the numbers?
You can start with a seed rather than using a system-generated randomizer.jobyts said:A computer cannot generate pure random number. What computer generates is a pseudo random number. For most of the random number applications, pseudo random numbers are more suited than pure random numbers. Pure random numbers have very little applications.
jobyts said:A computer cannot generate pure random number. What computer generates is a pseudo random number. For most of the random number applications, pseudo random numbers are more suited than pure random numbers. Pure random numbers have very little applications.
Moonbear said:So, still, how would you know if a number WAS a pure random number? Where do they come from and how would you recognize them?
flatmaster said:My probability is a little rusty. What sort of discrete probability distribution would theoretically be expected here considering it was truly random? Poisson Distribution? A Bayesian analysis could tell us the probability that this data is actually a random distribution. Might do that later.