Jim123
Jim123
  • Threads: 10
  • Posts: 20
Joined: Dec 7, 2009
December 26th, 2011 at 5:23:26 PM permalink
Why is there a need for a slot machine to pick large random numbers in the billions of number vs just a smaller number? Do slot manufacturers use larger numbers to make the games less volitle?

Thanks in Advance!

Jim
Wizard
Administrator
Wizard
  • Threads: 1493
  • Posts: 26497
Joined: Oct 14, 2009
December 26th, 2011 at 6:42:15 PM permalink
The maximum size of the original random number doesn't make any noticeable difference. It will get mapped to a smaller one, perhaps using the mod() function. For example, if RN is the original integer, and they needed one from 0 to 37, to simulate a roulette game, they might do x=RN%38.
"For with much wisdom comes much sorrow." -- Ecclesiastes 1:18 (NIV)
Jim123
Jim123
  • Threads: 10
  • Posts: 20
Joined: Dec 7, 2009
December 26th, 2011 at 7:50:10 PM permalink
So why do Rng's pick such large numbers?
MathExtremist
MathExtremist
  • Threads: 88
  • Posts: 6526
Joined: Aug 31, 2010
December 26th, 2011 at 8:35:07 PM permalink
Mostly it's an artifact of the computation. RNG output is often stored in a primitive type, meaning you'll end up with either 32 or 64 bits of output. If that's represented as an integer, the range is quite large. However, the range of a PRNG isn't nearly as important as the period.
"In my own case, when it seemed to me after a long illness that death was close at hand, I found no little solace in playing constantly at dice." -- Girolamo Cardano, 1563
DJTeddyBear
DJTeddyBear
  • Threads: 207
  • Posts: 10992
Joined: Nov 2, 2009
December 26th, 2011 at 8:50:28 PM permalink
It is my understanding that most RNGs select a decimal fraction, many decimal places long:
0 <= x < 1 (or maybe it's 0 < x <= 1)

It then multiplies to get a number in the range you're looking for. Depending on the program, it may provide a whole number.


The fact that the RNG in slot machines produces exceedingly large numbers may, or may not even be a fact. If it's a true fact, I'd ask, why? Does it really make is any more random?

I truly believe that it just selects a number from 1 to 256, or 384, or however many stops there are on the virtual wheel - but that's it.
I invented a few casino games. Info: http://www.DaveMillerGaming.com/ ————————————————————————————————————— Superstitions are silly, childish, irrational rituals, born out of fear of the unknown. But how much does it cost to knock on wood? 😁
Jim123
Jim123
  • Threads: 10
  • Posts: 20
Joined: Dec 7, 2009
December 27th, 2011 at 8:03:54 AM permalink
I'm trying to find out to find out if the range of the Rng effects the volatility of the game? In other words why is there a need to pick a number between 0 -4 billion and then map that to a virtual reel? Couldn't you just as easily picked a number between 1 and the number of virtual reel stops? What purpose does the large number serve?
DJTeddyBear
DJTeddyBear
  • Threads: 207
  • Posts: 10992
Joined: Nov 2, 2009
December 27th, 2011 at 8:44:25 AM permalink
Yeah, I agree with you, but suddenly thought of a plausable reason.

The assumption is that a RNG will have an even distribution of picking the numbers in the range.

But what if, despite the best efforts to design it properly, that the distribution wasn't even? What if there was an extremely slight bias, that some how is not multiplied when the range expands?

I.E. If there is a slight bias for one number, expanding the range reduces the impact of that bias.


Let's say the number 87 gets selected 1% more often than any other number.

If the RNG for a slot with 256 stops per reel picks a number from 1 to 256, then that bias *hardly* noticable, and, depending on what that number is mapped to might be a good or bad thing. Note: Hardly noticable, but still there.

But if the RNG picked a number from 1 to 256,000,000, then divide by 1,000,000, the 1% bias towards number 87 has a 0.000001% impact - which is a lot closer to zero.
I invented a few casino games. Info: http://www.DaveMillerGaming.com/ ————————————————————————————————————— Superstitions are silly, childish, irrational rituals, born out of fear of the unknown. But how much does it cost to knock on wood? 😁
Ayecarumba
Ayecarumba
  • Threads: 236
  • Posts: 6763
Joined: Nov 17, 2009
December 27th, 2011 at 10:42:08 AM permalink
Here is my guess: Since the RNG is actually a "pseudo" random number generator, having bilions of combinations makes it very difficult to know when they have been exhausted (if that ever occurs), and the sequence starts again.
Simplicity is the ultimate sophistication - Leonardo da Vinci
thecesspit
thecesspit
  • Threads: 53
  • Posts: 5936
Joined: Apr 19, 2010
December 27th, 2011 at 11:42:09 AM permalink
Depends how the pRNG is actually implemented. You can use a pRNG along with a noise generator to get a RNG.

The system can't "just" pick a number between 1 and 384. That's not how computers work. Underneath it will generate a byte (or multi-byte) long string of 1 and 0's which are then converted in to a simple integer. Hopefully with out any bias. If there's 2^32 possible strings, you'll notice 384 doesn't divide directly into it. This means if you used a straight modulo function some numbers in that 384 range would be mapped -slightly- more often to strrings than others.

So what I think you'd do is map it to 512, and then reject any number greater than 384.

The byte long string is generated by some clever math which operates on the string of bits, to create a new string of bits. If you repeated this operation a number of times based on some external noise, you'll have a series of random numbers which are good enough for the one armed bandits, as the strings are mapped to numbers, and the numbers mapped to slots on the reels, and the underlying number used is obscured from the player.
"Then you can admire the real gambler, who has neither eaten, slept, thought nor lived, he has so smarted under the scourge of his martingale, so suffered on the rack of his desire for a coup at trente-et-quarante" - Honore de Balzac, 1829
charliepatrick
charliepatrick
  • Threads: 39
  • Posts: 2946
Joined: Jun 17, 2011
January 20th, 2012 at 3:02:09 PM permalink
Without giving too many details I wrote a RNG for an organization. The architecture of the computer means you will always return a series of 0s and 1s, usually a power of 2. As described, this can map to a number 0 to 1. The importance of having a large number of significant digits is that say you wanted 1 to 384, you would get a more accurate even distribution (say) 1 to 11184810 = 1, etc. (You don't ignore numbers as you could get into a loop waiting for a valid number.)

Also one important feature is how long it takes (unless there's external intervention such as noise) before the output stream is repeated. In theory the internal state of the RNG will be a series of words, double words etc. that has to at least exceed this number.

Suppose, using a calculator, you kept a 12 digit number and output the middle four digits. To create the next number (say) multiply by A and add B (or something similar ignoring overflow). Assuming A and B were good, your stream would repeat every 10^12 - for instance 000000000000 would be followed by B and have to wait until every other permutation had occurred before returning.
  • Jump to: