Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

http://xkcd.com/221/

(http://xkcd.com/221/)

I get the root of this joke, but i don't get how to fully explain it.

1 clear point is that in computer science the random concept doesn't exist, there is a pseudo-random approach mainly based on studies about probability.

The main consequence is that a pseudo-random function can be based on an arbitrary seed, because the random doesn't exist and it's replaced by a "probability based function" that as many other functions accepts input values that in this case is the seed.

In the probability world and in the computer science world there are a lot of stuff about pseudo random generated numbers, algorithms that are based on particular sets, distributions, or that can simply guarantee a math property.

If I would asked to comment that function from a programmer viewpoint I would say that it's a "biased pseudo-random function" based on a set with only 1 element.

The problem is: this can be true ? a function based on a set composed of only 1 element it's a random function ?

Can someone give a good math/programmer explanation ?

share|improve this question

closed as off topic by Anthony Grist, talonmies, finnw, MvG, ρяσѕρєя K Nov 18 '12 at 17:21

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 3 down vote accepted

An answer in tune with your question:

enter image description here

See the original strip at: http://dilbert.com/

share|improve this answer
ok ok ok ok ok ok ok – user1824407 Nov 15 '12 at 14:44
i lol'd... :P nice one – TWCrap Nov 15 '12 at 14:47
Good one... On the other hand, you can know, that if you can implement an algorithm to generate your "random numbers" and that algorithm does not take as an input some source of entropy that is non-deterministic (or at least only deterministic on a scale that is not easily observed), then the algorithm is at best "pseudo-random". – twalberg Nov 15 '12 at 14:51
@twalberg so, in english, you are saying that the only real random thing is the seed ? – user1824407 Nov 15 '12 at 14:53
@user1824407 Not really - as seeds unfortunately tend to be something along the lines of seed(time()) or something, so seeds aren't generally "random". What I was referring to was including something like timestamps from keystrokes, network packets or other "apparently non-deterministic" processes, or hardware entropy sources like radioactive decay sensors or something - things that can't be predicted without expending a lot of effort on the prediction. – twalberg Nov 15 '12 at 14:57
show 1 more comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.