signerror
- 175
- 3
Make sure it is really random. No cheating!
jimmysnyder said:Before I vote, I would like to clear up one thing. Is 18 a random number?
I remember hearing that you can tell the difference between a sequence of 1's and 0's generated by a pseudo-random generator, and one generated by a person. Apparently, when people generate a sequence, they avoid long runs.DaveC426913 said:I am going to bet that you will find a non-random distribution. There will be a statistically significant lack of hits at the ends as well as at the middle, resulting in a double-humped graph.
When asked to choose a number between 1 and 10, a more-than-average number of people will choose 3 or 7 because, psychologically, those numbers are more "hidden".
DaveC426913 said:I am going to bet that you will find a non-random distribution. There will be a statistically significant lack of hits at the ends as well as at the middle, resulting in a double-humped graph.
When asked to choose a number between 1 and 10, a more-than-average number of people will choose 3 or 7 because, psychologically, those numbers are more "hidden".
Moonbear said:Can you really "choose" a random number?
TheStatutoryApe said:I closed my eyes moved the cursor around in the vicinity of the numbers and then clicked. It took a couple tries.
DaveC426913 said:I am going to bet that you will find a non-random distribution. There will be a statistically significant lack of hits at the ends as well as at the middle, resulting in a double-humped graph.
When asked to choose a number between 1 and 10, a more-than-average number of people will choose 3 or 7 because, psychologically, those numbers are more "hidden".
Guilty.Moonbear said:I would predict that if you put this poll up on any other forum aside from PF, that is precisely what you would see. I think that the folks here at PF are too aware of these patterns and will actually try to break them.
The Amazing Schmendrolog...
This Polish slide rule (manufactured circa 1973) featured such groundbreaking slide rule innovations as the 'RND' scale (random number generator) and the famous blank area on the back for writing intermediate values and phone numbers.
In fact, this rule was the first to feature reverse polish notation, an important step in modern computing technology.
I did the same thing and ended up clicking on the advertisements. :shy:TheStatutoryApe said:I closed my eyes moved the cursor around in the vicinity of the numbers and then clicked. It took a couple tries.
drizzle said:can I ask, what's the point of this thread?
Borek said:No point IMHO.
No idea what should I vote for. I like 7 as well, but - as I like it - it is not random.
lisab said:Well I don't know what the OP's intent was, but for me, it's just pure, pointless, geeky entertainment.
Moonbear said:I would predict that if you put this poll up on any other forum aside from PF, that is precisely what you would see. I think that the folks here at PF are too aware of these patterns and will actually try to break them. I'm curious to see what pattern might instead emerge...maybe the mirror image of what you were predicting.
1 : 4 0
2 : 1 1
3 : 0 2
4 : 3 1
5 : 2 3
6 : 3 3
7 : 7 5
8 : 1 3
9 : 1 5
10 : 2 0
11 : 1 2
12 : 1 2
13 : 2 2
14 : 1 4
15 : 1 2
16 : 2 1
17 : 3 1
18 : 4 2
19 : 1 1
20 : 2 2
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
const int N = 42;
int freq[20] = {0};
srand(time(0));
for(int i = 0; i < N; i++)
{
freq[ rand() % 20 ] ++;
}
for(int i = 0; i < 20; i++)
{
cout << (i+1) << " : " << freq[i] << endl;
}
return 0;
}
In[1] := RandomChoice[Range[20]]
Out[1] := 13
AUMathTutor said:Ironically, the human one seems to be more "random" than the pseudorandom one.
This leads me to think that people are cheating.
flatmaster said:Mathematica is Unlucky!
RandomInteger[20]
Floor[20 Random[]]+1
BobG said:(With no birthdays to celebrate, we had to do something while we ate our cake, so we had birthday trivia.)
BobG said:A rare thing happened at work today. Every month we have birthday cake to celebrate everyone born in that particular month. Today we had cake, but it turned out that none of the 66 employees in our building had a June birthday (the odds against that happening are about 311-1).
QuantumPion said:I just wiggled my mouse around wildly with my eyes closed and picked the radio button closest in vertical position to where it stopped at. 6!
CRGreathouse said:About 288:1 based on the number of days in that month and that month's frequency:
http://www.maa.org/mathland/mathtrek_11_23_98.html
It is more random than the rest of us.Borek said:Not random at all. Most likely you ended around the starting position, where your hand was at rest.
DaveC426913 said:It is more random than the rest of us.
drizzle said:since the talk is about [bizarre] numbers, did you ever felt like you’ve been chased by a number! sounds funny I know, but I mean [personally], where ever I look, I see the number 42, the time is always [something:42], my academic number was 42, every film I watch points out that number [like, street 42, apartment 42…], what makes this more creepy to me
now, is the number I picked randomly here is 6, unlike the number I would like to pick which is 7…
but hey 6*7=42
BobG said:If you drill a hole from the North Pole, through the center of the Earth to the South Pole, and then drop a ball into the hole, how many minutes will it take for the ball to reach the surface at the South Pole (disregarding any friction from the air, etc)?
Why was the Mad Hatter mad?
(Just trying to fuel your obsession).
Yeah, I'm not saying it's a good method - but just picking a number can't be a good method either. I picked 1. How could that be random?Moonbear said:I'm not sure of that. When the sequence of numbers remains in the same order, and you have some sense of how much you're moving the mouse up and down, you're pretty likely to land quite close to where you intended to land.