170

I have two doubles like the following

double min = 100;
double max = 101;

and with a random generator, I need to create a double value between the range of min and max.

Random r = new Random();
r.nextDouble();

but there is nothing here where we can specify the range.

Tunaki
  • 132,869
  • 46
  • 340
  • 423
swati
  • 2,099
  • 6
  • 19
  • 23

7 Answers7

266

To generate a random value between rangeMin and rangeMax:

Random r = new Random();
double randomValue = rangeMin + (rangeMax - rangeMin) * r.nextDouble();
mob
  • 117,087
  • 18
  • 149
  • 283
  • 22
    This is generally correct, but beware of its limits. If you do `double rangeMax= Double.MAX_VALUE;` and `double rangeMin= -rangeMax;` you will always get an infinite value in return. You might want to check for `Double.valueOf(rangeMax-rangeMin).isInfinite()`. – lre Apr 07 '14 at 10:55
  • 1
    Note that the results of this will often exclude many double values in the desired range, if that range is larger than 0.0-1.0. If the desired range contains a larger number of values than the range 0.0-1.0 there will not be a value for each of them and they will never get generated. (By the pigeonhole principle!). Because of this [Tunaki's solution](https://stackoverflow.com/a/32808589/452775) is better. – Lii Jun 17 '18 at 12:38
  • @Lii _there will not be a value for each of them_ why not? – Kartik Chugh Aug 20 '19 at 00:47
  • 2
    @K_7: Say for example that there are 10,000 distinct double value between 0.0 and 1.0 (in reality there are probably more). But if the range between `rangeMin`and `rangeMax` is large, then there might be 10,000,000 distinct double values between them. The result of `(rangeMax - rangeMin) * r.nextDouble()` will only choose between 10,000 of those possible 10,000,000 values. (I feel that this is not a perfect explanation, but maybe it helps a little bit...) – Lii Aug 20 '19 at 07:25
  • 1
    Ah I see. Basically, multiplying a number that can take a finite set of values doesn't change the size of that set. – Kartik Chugh Aug 22 '19 at 14:27
161

This question was asked before Java 7 release but now, there is another possible way using Java 7 (and above) API:

double random = ThreadLocalRandom.current().nextDouble(min, max);

nextDouble will return a pseudorandom double value between the minimum (inclusive) and the maximum (exclusive). The bounds are not necessarily int, and can be double.

shmosel
  • 49,289
  • 6
  • 73
  • 138
Tunaki
  • 132,869
  • 46
  • 340
  • 423
47

Use this:

double start = 400;
double end = 402;
double random = new Random().nextDouble();
double result = start + (random * (end - start));
System.out.println(result);

EDIT:

new Random().nextDouble(): randomly generates a number between 0 and 1.

start: start number, to shift number "to the right"

end - start: interval. Random gives you from 0% to 100% of this number, because random gives you a number from 0 to 1.


EDIT 2: Tks @daniel and @aaa bbb. My first answer was wrong.

Topera
  • 12,223
  • 15
  • 67
  • 104
6
import java.util.Random;

public class MyClass {
     public static void main(String args[]) {
          Double min = 0.0;  // Set To Your Desired Min Value
          Double max = 10.0; // Set To Your Desired Max Value
          double x = (Math.random() * ((max - min) + 1)) + min;   // This Will Create A Random Number Inbetween Your Min And Max.
          double xrounded = Math.round(x * 100.0) / 100.0;   // Creates Answer To The Nearest 100 th, You Can Modify This To Change How It Rounds.
          System.out.println(xrounded);    // This Will Now Print Out The Rounded, Random Number.
     }
}
Keet Sugathadasa
  • 11,595
  • 6
  • 65
  • 80
Larson Carter
  • 153
  • 2
  • 11
2

Hope, this might help the best : Random Number Generators in Java


Sharing a Complete Program:

import java.util.Random;

public class SecondSplitExample
{
    public static void main(String []arguments)
    {
        int minValue = 20, maxValue=20000;
        Random theRandom = new Random();
        double theRandomValue = 0.0;
        
        // Checking for a valid range-
        if( Double.valueOf(maxValue - minValue).isInfinite() == false ) 
            theRandomValue = minValue + (maxValue - minValue) * theRandom.nextDouble();
        
        System.out.println("Double Random Number between ("+ minValue +","+ maxValue +") = "+ theRandomValue);
    }
}

Here is the output of 3 runs:

Code>java SecondSplitExample
Double Random Number between (20,20000) = 2808.2426532469476

Code>java SecondSplitExample
Double Random Number between (20,20000) = 1929.557668284786

Code>java SecondSplitExample
Double Random Number between (20,20000) = 13254.575289900251

Learn More:

SKL
  • 103
  • 6
1
Random random = new Random();
double percent = 10.0; //10.0%
if (random.nextDouble() * 100D < percent) {
    //do
}
Tau
  • 33
  • 5
0

The main idea of random is that it returns a pseudorandom value. There is no such thing as fully random functions, hence, 2 Random instances using the same seed will return the same value in certain conditions.

It is a good practice to first view the function doc in order to understand it (https://docs.oracle.com/javase/8/docs/api/java/util/Random.html)

Now that we understand that the returned value of the function nextDouble() is a pseudorandom value between 0.0 and 1.0 we can use it to our advantage.

For creating a random number between A and B givin' that the boundaries are valid (A>B) we need to: 1. find the range between A and B so we can know how to many "steps" we have. 2. use the random function to determine how many steps to take (because the returned value is between 0.0 and 1.0 you can think of it as "pick a random percentage of increase" 3. add the offset

After all of that, you can see that mob gave you the easiest and most common way to do so in my opinion

double randomValue = rangeMin + (rangeMax - rangeMin) * r.nextDouble();

double RandomValue = Offset + (Range)*(randomVal between 0.0-1.0)

Yair Landmann
  • 117
  • 2
  • 15