
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 ?
