I have piece of code which generates some Random number and prints out on console. However I am curious about the pattern which it prints, Such as,

import java.util.*;
public class Test
{
    public static void main(String[] args)
    {
        Random random = new Random(-6732303926L);
            for(int i=0;i<10;i++)
                System.out.println(random.nextInt(10)+" ");    
    }
}

Result : 0 1 2 3 4 5 6 7 8 9 - Every number in new line.

And if you change this code a bit! like,

import java.util.*;
public class Test
{
    public static void main(String[] args)
    {
        Random random = new Random(-6732303926L);
            for(int i=0;i<10;i++)
                System.out.println(random.nextInt(11)+" ");    
    }
}

Result : 8 9 2 2 10 3 8 7 0 10 - Every number in new line.

What is the reason of 0123456789 which is not random at all!?

link|improve this question

4  
Would be nice to credit the original source – Tomasz Nurkiewicz Oct 28 '11 at 8:00
Yes, JCG.com are reposting articles from various blogs, but they mention the original source at the end of the article. – Tomasz Nurkiewicz Oct 28 '11 at 8:44
feedback

4 Answers

up vote 5 down vote accepted

I think it is random... you are using a specific seed for the random function. You just found the seed that will give you the numbers 0 - 9, in order.

EDIT: Apparently, this is the algorithm:

The java.util.Random class implements what is generally called a linear congruential generator (LCG). An LCG is essentially a formula of the following form: numberi+1 = (a * numberi + c) mod m

Source: here

link|improve this answer
feedback

0123456789 is random too, in this case - it's about as likely to come up as 14235682907, which would no doubt not have given you any cause for concern.

You spotted a fluke, basically. If you print the next 10 numbers in the first case, they're not preserving any obvious order.

It's like flipping a coin - the pattern HHHHHHHH is just as likely to come up as the exact pattern HHTHTTHH; there's a 1 in 28 chance of each coming up, as at any of the 8 steps there's a 50% chance of it going wrong. But the first pattern looks like it's broken, whereas the second doesn't.

link|improve this answer
feedback

The Random class is a pseudo-random number generator. Thus it is not truely random, but instead relies on mathematical operations performed on an initial seed value. Thus, certain seeds will produce certain (potentially interesting/fun) sequences

link|improve this answer
feedback

Creating random with a seed ensures a certain behavior. Especially, creating two instances of Random with the same seed, will always behave identically. Someone found out (via brute force, I guess) that using this particular seed together with the first 10 nextInt(10), creates such a seemingly ordered sequence. This sequence is pseudo-random updon first creation, but can be reproduced. Changing anything in the slightest gives a different result.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.