hot questions tagged random-number-generator+java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T08:21:20Z http://stackoverflow.com/feeds/tag?tagnames=random-number-generator%2bjava&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1813055/java-util-random-peculiarity 0 java.util.Random peculiarity Marc Müller 2009-11-28T17:01:34Z 2009-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-numbers 3 Generating correlated numbers Gideon 2009-11-11T20:41:06Z 2009-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&lt;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-1 2 Java Generate Random number {-1,0,1} radWin 2009-05-23T15:08:10Z 2009-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/738629/math-random-versus-random-nextintint 7 Math.random() versus Random.nextInt(int) Gili 2009-04-10T19:29:09Z 2009-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/453479/how-good-is-java-util-random 9 How good is java.util.Random? Dove 2009-01-17T15:50:40Z 2009-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/750145/please-help-me-get-my-random-number-generating-working-in-java 1 Please help me get my random number generating working in Java jedierikb 2009-04-15T02:58:11Z 2009-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/397867/port-of-random-generator-from-c-to-java 9 Port of Random generator from C to Java? martinus 2008-12-29T15:08:42Z 2008-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&lt;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) &amp; 4095; t = a*Q[i] + c; c = (t&gt;&gt;32); x = t + c; if (x &lt; 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&lt;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 &lt; 4096; ++i) { long v = r.nextInt(); v -= Integer.MIN_VALUE; Q[i] = v; } i = 4095; } int next() { i = (i + 1) &amp; 4095; long t = 18782 * Q[i] + c; c = t &gt;&gt;&gt; 32; long x = (t + c) &amp; 0xffffffffL; if (x &lt; c) { ++x; ++c; } long v = 0xfffffffeL - x; Q[i] = v; return (int) v; } } </code></pre> http://stackoverflow.com/questions/629798/problem-with-random-nextgaussian 2 problem with Random.nextGaussian() BHARATH 2009-03-10T11:47:03Z 2009-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/426350/seeding-java-util-random-with-consecutive-numbers 1 Seeding java.util.Random with consecutive numbers Parker 2009-01-08T22:45:37Z 2009-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 &lt; 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/72479/equivalent-vb-code-for-a-java-code 0 equivalent vb code for a java code Shoban 2008-09-16T13:53:33Z 2008-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> http://stackoverflow.com/questions/126656/opensource-implementation-of-the-alias-method 0 Opensource Implementation of the Alias Method Chii 2008-09-24T11:45:01Z 2008-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&amp;dq=alias+method+walker&amp;ei=D4ORR8ncFYuWtgOslpVE&amp;sig=TjEThBUa4odbGJmjyF4daF1AKF4&amp;id=ERSSDBDcYOIC&amp;output=html" rel="nofollow">http://books.google.com/books?pg=PA133&amp;dq=alias+method+walker&amp;ei=D4ORR8ncFYuWtgOslpVE&amp;sig=TjEThBUa4odbGJmjyF4daF1AKF4&amp;id=ERSSDBDcYOIC&amp;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>