Just a random Casual Friday survey this week.
As usual, the survey is brief, and should take only a minute or two to complete. You have until Thursday, February 19 to respond. There is no limit on the number of responses. Don't forget to come back next Friday for the results.

Cognitive Daily reports nearly every day on fascinating peer-reviewed developments in cognition from the most respected scientists in the field.


Comments
Wow, indeed that was rather random!
Posted by: Ana | February 13, 2009 10:47 AM
That last question is (in my arrogant opinion) bad - it doesn't specify a frame of reference. That is, it's not clear whether you're asking about determinism or just practical predictability.
Posted by: Epicanis | February 13, 2009 10:55 AM
Most enjoyable. This may be my favorite Casual Friday evah!
Posted by: Matthew Platte | February 13, 2009 11:36 AM
Randomness is a concept used to bundle the leftovers from explanations. Unfortunately, many reify it into a force that shapes the world. It isn't.
Posted by: hmg | February 13, 2009 12:16 PM
Just finished reading Paul Glimcher's "Decisions, Uncertainty, and the Brain : The Science of Neuroeconomics" so I found this survey very fitting. Glimcher argues animals have evolved some sort internal randomizer. He reasons that this is useful in decision making in non-zero-sum games.
Posted by: Ryan | February 13, 2009 2:08 PM
I just want you to know that I actually flipped coins for the random number order questions. :)
Posted by: T.O. | February 13, 2009 6:16 PM
T.O.: I did the same thing.
The second-to-last question made me think, though. There are probably simple hash functions from words to small numbers that let humans generate pretty good random numbers, even if the word distribution is biased.
For instance, the sum of the letters mod N is probably pretty good (for small N). Alternatively, you could get one fairly random bit per word by counting whether an even or odd number of letters were in the first half of the alphabet.
(Of course, you have to avoid picking words for which you remember what answer you get, but that shouldn't be too hard.)
Posted by: polveroj | February 13, 2009 6:43 PM
I agree with Epicanis (#2). The question uses "be" in a very ambiguous way. What do you mean by "being random?" Can humans generate truly random sequences? Can humans behave unpredictably? The question doesn't make it clear what you mean. In any case, I really enjoyed the survey and look forward to some rather predictable results.
Posted by: Turgid | February 13, 2009 8:46 PM
I used this for answering the random questions: http://www.random.org/
I rolled 10 die and picked the first 5 (then 4 then 3) die starting from the left that contained numbers in the correct range. For the words, I used the string generator to generate random letter strings and I picked out the first real word that appeared within in one of the strings. Humans can be completely random but only if they use their technology.
Posted by: Alys | February 13, 2009 10:12 PM
So, it's not random to just make stuff up? haha. Of course I know it isn't, else why would half the novels in print have the same basic plot?
Posted by: Donna B. | February 14, 2009 2:20 AM
What is "truly random"?
In one sense, being "truly random" is simply being able to generate entropy; people don't always choose the same number or follow an entirely predictable sequence and so they are in this sense truly random.
On the other hand, "truly random" is sometimes used to mean "capable of generating sequences of independent random events". Ask someone to generate a random sequence of heads and tails and you'll often get too much alternation (hththt) and too few sequences of a single result (hhhhh) compared to a truly independent entropy source. People are less random than a perfect entropy source, and in this sense not truly random.
I think the first meaning is a better definition (to distinguish from pseudorandom), but I think the survey is getting at the second meaning.
Posted by: rhebus | February 14, 2009 6:02 AM
"It all depends on what your definition of 'is' is."
I'm awaiting the results, like a cat that ate cheese and waits by the mouse-hole with baited breath. I expect the following to be th results:
1) very close to random disposition on birth month. other configurations of months less truly random
2) avoidance of first and last number to start "random" orders, e.g., choice of 1 or 5 will not approximate 40%.
3)"Making stuff up" will prove to be a complex, culturally-influenced activity, untestable by a simple survey and subject to Heisenberg-like alteration by attempts to quantify creativity
Posted by: E. Clayton Rowe | February 14, 2009 10:43 AM
I remember when I was a child doing a kind of junior mentalism trick on my schoolfriends in which I asked them to multiply numbers by 2 in rapid succession and then asked them to name a vegetable right at the end, which I would have correctly written in an envelope. They always named tomato or, much more rarely, carrot. I think it was something to do with the colour red because other questions would yield red answers if I remember correctly. Perhaps this is testing something similar.
Posted by: Nik M | February 14, 2009 12:48 PM
I did it! And feel that I have some semblance where this is going...
Posted by: yipeng | February 14, 2009 6:16 PM
Nik M,
"...I asked them to multiply numbers by 2 in rapid succession and then asked them to name a vegetable...
They always named tomato or, much more rarely, carrot. I think it was something to do with the colour red because other questions would yield red answers if I remember correctly."
...that's interesting because the colour 'red' tends to help us pay more attention to detail in concentration, which could be associated with doing arithmetic.
Check this out: http://scienceblogs.com/notrocketscience/2009/02/colouring_your_mind_-_red_improves_attention_to_detail_blue.php
Although I'm not sure if this is what you were getting at anyway...
Posted by: Flymises | February 15, 2009 1:19 PM
I think that the random word entry is sort of biased due to all the content on the page. I for one put the first word that popped into my head (frogs) only to realize that the page was green (like frogs of course)! I left my entry for randomness sake, but i have to wonder if it was merely coincidence.
Posted by: Ian | February 15, 2009 11:32 PM
import random
s=[1,2,3,4,5]
random.shuffle(s)
print s
...
Posted by: Stephen | February 16, 2009 6:25 AM
Oh, and:
import random
l = open("/usr/share/dict/words", 'r').readlines()
random.choice(l)
Reseed random as desired, of course.
:)
Posted by: Stephen | February 16, 2009 6:28 AM
Those using tools: cute, but don't you think it's kind of missing the point?
This isn't some game that you get points for if you win, it's a fun survey to determine what makes people tick, not to determine what makes random.org et al tick.
Maybe CogDaily should do a survey on valuing cleverness over integrity?
Of course they could have/should have had a question on the last page, "Did you use any tools to generate random answers for you?" on the last page...
Posted by: Graham J | February 16, 2009 9:22 PM