active questions tagged random-number-generator+java - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T10:36:58Zhttp://stackoverflow.com/feeds/tag/random-number-generator+javahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1813055/java-util-random-peculiarity0java.util.Random peculiarityMarc Müller2009-11-28T17:01:34Z2009-11-28T18:36:55Z
<p>So here is one of the simplest things one might do:</p>
<pre><code>Random rng = new Random();
int a = rng.nextInt(10);
int b = rng.nextInt(10);
</code></pre>
<p>So far so good. But we want to avoid having equal a and b, so naturally we do:</p>
<pre><code>Random rng = new Random();
int a = rng.nextInt(10);
int b = rng.nextInt(10);
while (a == b){
b = rng.nextInt(10);
}
</code></pre>
<p>However — to my very very very big surprise — the while loop <em>never</em> exits. Never.</p>
<p>I understand that, in theory, with random numbers you <em>could</em> have an infinite sequence of one number. But I've had this code running for 10 minutes now and it hasn't exited the loop.</p>
<p>What's up with this? I'm running JDK 6 Update 16 on the latest Linux Mint.</p>
http://stackoverflow.com/questions/1717907/generating-correlated-numbers3Generating correlated numbersGideon2009-11-11T20:41:06Z2009-11-22T22:33:23Z
<p>Here is a fun one: I need to generate random x/y pairs that are correlated at a given value of <a href="http://en.wikipedia.org/wiki/Pearson%5Fproduct-moment%5Fcorrelation%5Fcoefficient" rel="nofollow">Pearson product moment correlation coefficient, or Pearson r</a>. You can imagine this as two arrays, array X and array Y, where the values of array X and array Y must be re-generated, re-ordered or transformed until they are correlated with each other at a given level of Pearson r. Here is the kicker: Array X and Array Y must be uniform distributions. </p>
<p>I can do this with a normal distribution, but transforming the values without skewing the distribution has me stumped. I tried re-ordering the values in the arrays to increase the correlation, but I will never get arrays correlated at 1.00 or -1.00 just by sorting. </p>
<p>Any ideas?</p>
<p>--</p>
<p>here is the AS3 code for random correlated gaussians, to get the wheels turning:</p>
<pre><code>public static function nextCorrelatedGaussians(r:Number):Array{
var d1:Number;
var d2:Number;
var n1:Number;
var n2:Number;
var lambda:Number;
var r:Number;
var arr:Array = new Array();
var isNeg:Boolean;
if (r<0){
r *= -1;
isNeg=true;
}
lambda= ( (r*r) - Math.sqrt( (r*r) - (r*r*r*r) ) ) / (( 2*r*r ) - 1 );
n1 = nextGaussian();
n2 = nextGaussian();
d1 = n1;
d2 = ((lambda*n1) + ((1-lambda)*n2)) / Math.sqrt( (lambda*lambda) + (1-lambda)*(1-lambda));
if (isNeg) {d2*= -1}
arr.push(d1);
arr.push(d2);
return arr;
}
</code></pre>
http://stackoverflow.com/questions/901689/java-generate-random-number-1-0-12Java Generate Random number {-1,0,1}radWin2009-05-23T15:08:10Z2009-05-23T15:13:52Z
<p>Hi-
I need a function that will return a random integer that can be only -1, 0, or 1.
Thanks?</p>
http://stackoverflow.com/questions/750145/please-help-me-get-my-random-number-generating-working-in-java1Please help me get my random number generating working in Javajedierikb2009-04-15T02:58:11Z2009-04-15T03:20:03Z
<p>I am trying to make a Java implementation of the Park-Miller-Carta PRNG random number generator (maybe faster?)</p>
<p>Below is the implementation of the Random function in ActionScript 3 <a href="http://www.gskinner.com/blog/archives/2008/01/source%5Fcode%5Fsee.html" rel="nofollow">from here</a>.</p>
<pre><code>return (_currentSeed = (_currentSeed * 16807) % 2147483647) / 0x7FFFFFFF
+ 0.000000000233;
</code></pre>
<p>I am not having much luck getting this to work in Java:</p>
<pre><code>int seed = 20; //for example.
public double random() {
seed = (seed * 16807) % 2147483647;
return seed / 0x7FFFFFFF + 0.000000000233;
}
</code></pre>
<p>This always returns <code>2.33E-10</code>. Any ideas what I am doing wrong in Java? (the AS3 code returns <code>0.0001565276181885122</code>, then <code>0.6307557630963248</code> for the first two responses with a seed of <code>20</code>).</p>
http://stackoverflow.com/questions/738629/math-random-versus-random-nextintint7Math.random() versus Random.nextInt(int)Gili2009-04-10T19:29:09Z2009-04-10T19:51:12Z
<p>What is the difference between <code>Math.random() * n</code> and <code>Random.nextInt(n)</code> where <code>n</code> is an integer?</p>
http://stackoverflow.com/questions/629798/problem-with-random-nextgaussian2problem with Random.nextGaussian()BHARATH2009-03-10T11:47:03Z2009-03-10T12:05:57Z
<p>Random.nextGaussian() is supposed to give random no.s with mean 0 and std deviation 1.
Many no.s it generated are outside range of [-1,+1].
how can i set so that it gives normally distributed random no.s only in the range -1 to 1.</p>
http://stackoverflow.com/questions/453479/how-good-is-java-util-random9How good is java.util.Random?Dove2009-01-17T15:50:40Z2009-01-18T22:46:58Z
<p>Two Questions:</p>
<p>Will I get different sequences of numbers for every seed I put into it?</p>
<p>Are there some "dead" seeds? (Ones that produce zeros or repeat very quickly.)</p>
<p>By the way, which, if any, other PRNGs should I use?</p>
<p>Solution: Since, I'm going to be using the PRNG to make a game, I don't need it to be cryptographically secure. I'm going with the Mersenne Twister, both for it's speed and huge period.</p>
http://stackoverflow.com/questions/426350/seeding-java-util-random-with-consecutive-numbers1Seeding java.util.Random with consecutive numbersParker2009-01-08T22:45:37Z2009-01-11T14:39:46Z
<p>I've simplified a bug I'm experiencing down to the following lines of code:</p>
<pre><code> int[] vals = new int[8];
for (int i = 0; i < 1500; i++)
vals[new Random(i).nextInt(8)]++;
System.out.println(Arrays.toString(vals));
</code></pre>
<p>The output is: [0, 0, 0, 0, 0, 1310, 190, 0]</p>
<p>Is this just an artifact of choosing consecutive numbers to seed Random and then using nextInt with a power of 2? If so, are there other pitfalls like this I should be aware of, and if not, what am I doing wrong? (I'm not looking for a solution to the above problem, just some understanding about what else could go wrong)</p>
<p><hr /></p>
<p>Dan, well-written analysis. As the javadoc is pretty explicit about how numbers are calculated, it's not a mystery as to why this happened as much as if there are other anomalies like this to watch out for-- I didn't see any documentation about consecutive seeds, and I'm hoping someone with some experience with java.util.Random can point out other common pitfalls.</p>
<p>As for the code, the need is for several parallel agents to have repeatably random behavior who happen to choose from an enum 8 elements long as their first step. Once I discovered this behavior, the seeds all come from a master Random object created from a known seed. In the former (sequentially-seeded) version of the program, all behavior quickly diverged after that first call to nextInt, so it took quite a while for me to narrow the program's behavior down to the RNG library, and I'd like to avoid that situation in the future.</p>
http://stackoverflow.com/questions/397867/port-of-random-generator-from-c-to-java9Port of Random generator from C to Java?martinus2008-12-29T15:08:42Z2008-12-30T18:20:27Z
<p>George Marsaglia has written an excellent random number generator that is extremely fast, simple, and has a much higher period than the Mersenne Twister. Here is the code with a description:</p>
<p><a href="http://school.anhb.uwa.edu.au/personalpages/kwessen/shared/Marsaglia03.html" rel="nofollow">good C random number generator</a></p>
<p>I wanted to port the CMWC4096 code to Java, but it uses several unsigned datatypes so I am not sure how to do this properly. Here is the full C code:</p>
<pre><code>/* choose random initial c<809430660 and */
/* 4096 random 32-bit integers for Q[] */
static unsigned long Q[4096],c=362436;
unsigned long CMWC4096(void) {
unsigned long long t, a=18782LL;
static unsigned long i=4095;
unsigned long x,r=0xfffffffe;
i = (i+1) & 4095;
t = a*Q[i] + c;
c = (t>>32);
x = t + c;
if (x < c) {
x++;
c++;
}
return (Q[i] = r - x);
}
</code></pre>
<p>Can anyone port this to Java? How does this work when you only have signed numbers available?</p>
<p><strong>EDIT:</strong> Thanks everybody for the quick answers! For the first 100 million numbers this java code seems to produce the same result as the C code. It is 3 times faster than Java's java.util.Random.</p>
<pre><code>public class ComplimentaryMultiplyWithCarryRandom {
/**
* Choose 4096 random 32-bit integers
*/
private long[] Q;
/**
* choose random initial c<809430660
*/
private long c = 362436;
private int i;
public ComplimentaryMultiplyWithCarryRandom() {
Random r = new Random(1);
Q = new long[4096];
// TODO initialize with real random 32bit values
for (int i = 0; i < 4096; ++i) {
long v = r.nextInt();
v -= Integer.MIN_VALUE;
Q[i] = v;
}
i = 4095;
}
int next() {
i = (i + 1) & 4095;
long t = 18782 * Q[i] + c;
c = t >>> 32;
long x = (t + c) & 0xffffffffL;
if (x < c) {
++x;
++c;
}
long v = 0xfffffffeL - x;
Q[i] = v;
return (int) v;
}
}
</code></pre>
http://stackoverflow.com/questions/126656/opensource-implementation-of-the-alias-method0Opensource Implementation of the Alias MethodChii2008-09-24T11:45:01Z2008-10-05T05:57:06Z
<p>I am doing a project at the moment, and in the interest of code reuse, I went looking for a library that can perform some probabilistic accept/reject of an item: </p>
<p>i.e., there are three people (a, b c), and each of them have a probability P{i} of getting an item, where p{a} denotes the probability of a. These probabilities are calculated at run time, and cannot be hardcoded. </p>
<p>What I wanted to do is to generate one random number (for an item), and calculate who gets that item based on their probability of getting it. The alias method (<a href="http://books.google.com/books?pg=PA133&dq=alias+method+walker&ei=D4ORR8ncFYuWtgOslpVE&sig=TjEThBUa4odbGJmjyF4daF1AKF4&id=ERSSDBDcYOIC&output=html" rel="nofollow">http://books.google.com/books?pg=PA133&dq=alias+method+walker&ei=D4ORR8ncFYuWtgOslpVE&sig=TjEThBUa4odbGJmjyF4daF1AKF4&id=ERSSDBDcYOIC&output=html</a>) outlined here explained how, but I wanted to see if there is a ready made implementation so I wouldn't have to write it up.</p>
http://stackoverflow.com/questions/72479/equivalent-vb-code-for-a-java-code0equivalent vb code for a java codeShoban2008-09-16T13:53:33Z2008-10-05T05:53:03Z
<p>Can anyone tell me what exactly does thi java code do?</p>
<p>SecureRandom random = SecureRandom.getInstance("SHA1PRNG");
byte[] bytes = new byte[20];
synchronized (random) {
random.nextBytes(bytes);
}
return Base64.encode(bytes);</p>
<p><hr /></p>
<p>Step by step explanation will be useful so that I can recreate this code in VB. Thanks</p>