68
votes
37answers
3k views
Need for predictable random generator
I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be critical. The …
36
votes
22answers
2k views
Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?
The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device.
This was the only suggestion …
3
votes
6answers
307 views
C# Normal Random Number
I would like to create a function that accepts Double mean, Double deviation and returns a random number with a normal distribution.
Example: if I pass in 5.00 as the mean and 2.00 as the …
7
votes
11answers
349 views
A Good and SIMPLE Measure of Randomness
What is the best algorithm to take a long sequence of integers (say 100,000 of them) and return a measurement of how random the sequence is?
The function should return a single result, say 0 if the …
0
votes
7answers
813 views
Generating random number between [-1, 1] in C?
I have seen many questions on SO about this particular subject but none of them has any answer for me, so I thought of asking this question.
I wanted to generate a random number between [-1, 1]. How …
1
vote
9answers
403 views
Non-repeating pseudo random number stream with ‘clumping’
I'm looking for a method to generate a pseudorandom stream with a somewhat odd property - I want clumps of nearby numbers.
The tricky part is, I can only keep a limited amount of state no matter …
10
votes
23answers
3k views
Create Random Number Sequence with No Repeats
Duplicate:
Unique random numbers in O(1)?
I want an pseudo random number generator that can generate numbers with no repeats in a random order.
For example:
random(10)
might return
5, 9, 1, …
4
votes
9answers
2k views
Pseudo random generator, Assembler
Which "random" numbers generator algorithm is the best for an assembler program? Something easy, not a long piece of code.
Not external library allowed, just trying to keep it simple.
@Bill …
7
votes
20answers
2k views
True random number generator
Sorry for this not being a "real" question, but Sometime back i remember seeing a post here about randomizing a randomizer randomly to generate truly random numbers, not just pseudo random. I dont see …
9
votes
9answers
972 views
What Type of Random Number Generator is Used in the Gaming Industry?
Given the extremely high requirements for unpredictability to prevent casinos from going bankrupt, what random number generation algorithm and seeding scheme is typically used in devices like slot …
1
vote
9answers
319 views
Fast generation of random numbers that appear random…
I am looking for an efficient way to generate numbers that a human would perceive as being random. Basically, I think of this as avoiding long sequences of 0 or 1 bits. I expect humans to be …
5
votes
3answers
265 views
Efficient algorithm to randomly select items with frequency
Given an array of n word-frequency pairs:
[ (w0, f0), (w1, f1), ..., (wn-1, fn-1) ]
where wi is a word, fi is an integer frequencey, and the sum of the frequencies ∑fi = m,
I want to use a …
0
votes
4answers
350 views
Generating Random Number with Certain Rate
Dear all,
I have the following C++ code that tried to generate
a random number. The idea is we given some rate "x" and number of runs;
we hope it would generate the number as many as (x * number of …
4
votes
3answers
527 views
Pseudo Random Generator with same output
I came across an article about Car remote entry system at http://auto.howstuffworks.com/remote-entry2.htm In the third bullet, author says,
Both the transmitter and the receiver use the same …
