Back in the day I was in a raiding guild in World of Warcraft. And back then, each boss monster in a raid dungeon had a loot table, and when you killed it, your raid got a few pieces of random loot. And I don't know how many times I, and the other guy in the guild who understood statistics, had to explain to the others that random doesn't mean uniform. If a certain piece of armour has a 1/X chance to drop from a boss…
That's interesting, because in WarCraft 3, by Blizzard, randomness is designed to be "fair". They use a special word for it but i can't remember it at the moment. For example, there are certain items that can give you a chance to blow a "critical hit" , a critical hit multiplies your damage with X. Say an item gives you 30% chance to do 2X damage. However, the randomness has memory and is designed to distribute the c…
What does randomness look like?
111–120 of 123 posts
Re: What does randomness look like?
#112Earlier quoted context omitted.
> Oh yes. Our intuition is that random is fair and uniform, but it's absolutely not. But a uniform distribution is random, isn't it? This sort of phrasing is rampant in this thread, and I'm confused by it. How can a uniform distribution be considered non-random, or "less" random than another distribution?
Randomness is about having a uniform probability of results, but that does not translate into a uniform distribution of results, nor can it, because of the de-correlation between random results. Specifically, the chance of getting the same result multiple times is non-zero, and actually can be fairly high with a lot of samples, whereas the chance of duplicate results in a uniform distribution is zero. Read the articl…
Well, you're still assuming the colloquial definition of "random," which implies "uniformly random." Of course, we can have a random process that is not uniformly random.
Re: What does randomness look like?
#113Earlier quoted context omitted.
how do you expect to implement the "as-yet-undiscovered pseudorandom number generator" without any state ("hidden variables")?
I'm just an engineer, so I'm not actually trying to challenge accepted thinking. However, it is well known that any QM system can be simulated using a classical computer, with the penalty of exponential slowdown. Let's say that I have a hypothetical, ultra-powerful classical computer and I want to simulate a gigantic system of particles including aggregates of particles (e.g. people) performing measurements of other…
Re: What does randomness look like?
#114Earlier quoted context omitted.
how do you expect to implement the "as-yet-undiscovered pseudorandom number generator" without any state ("hidden variables")?
I'm just an engineer, so I'm not actually trying to challenge accepted thinking. However, it is well known that any QM system can be simulated using a classical computer, with the penalty of exponential slowdown. Let's say that I have a hypothetical, ultra-powerful classical computer and I want to simulate a gigantic system of particles including aggregates of particles (e.g. people) performing measurements of other…
Re: What does randomness look like?
#115Back in the day I was in a raiding guild in World of Warcraft. And back then, each boss monster in a raid dungeon had a loot table, and when you killed it, your raid got a few pieces of random loot. And I don't know how many times I, and the other guy in the guild who understood statistics, had to explain to the others that random doesn't mean uniform. If a certain piece of armour has a 1/X chance to drop from a boss…
Re: What does randomness look like?
#116Earlier quoted context omitted.
> Perhaps I'm just not using the same definitions of terms, but I thought a uniform distribution is still considered random. No, a uniform distribution is not evidence of randomness. Consider the digits 0 - 9 repeated endlessly: 0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789 ... Uniformly distributed? Yes. Random? No. > What is this notion of "pure randomness" tha…
>Uniformly distributed? Yes. Random? No. I think you're fudging what is supposed to be uniform here. In your example, the unigrams (i.e. single digits) may be uniform, but the n-grams for n > 2 are not.
Re: What does randomness look like?
#117Earlier quoted context omitted.
This is actually an important lesson for game designers. Real randomness is very frustrating for players! Games should be designed to not be random. For example, there's an expansion to The Settlers of Catan that lets you use cards instead of dice to ensure a nice smooth distribution of resources... I think it's a lot more fun!
That's interesting but then we're talking about another game. If there's a pack of cards indicating dice results you can have the equivalent of a 'warm deck' and a 'cold deck'. Players can then start counting. E.g.: I know '8' came out 7 times and '6' only came out once, then it changes my strategy because there's a benefit to expand with a new settlement (or make a "city") on an '6' instead of an '8'. I'm not agains…
Re: What does randomness look like?
#118Earlier quoted context omitted.
>Uniformly distributed? Yes. Random? No. I think you're fudging what is supposed to be uniform here. In your example, the unigrams (i.e. single digits) may be uniform, but the n-grams for n > 2 are not.
Actually, the n-grams are periodic and repetitive also. They certainly aren't random.
Re: What does randomness look like?
#119I guess I'm not a good randomness detective.