Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8553345
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T14:37:48+00:00 2026-06-11T14:37:48+00:00

I have a simple question and I’m a little rusty on random number generation.

  • 0

I have a simple question and I’m a little rusty on random number generation. I want to generate large odd integers (I’m using doubles since my numbers could be outside the int range) and I can’t quite figure out how to get rid of the decimals in the random number generation and have the number be odd.

Right now I just have:

N = nMin + (nMax - nMin) * rand.nextDouble();

Which as I said gives me any random number (with decimals) between nMin and nMax. Any help would be much appreciated!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T14:37:49+00:00Added an answer on June 11, 2026 at 2:37 pm

    If your numbers can be out of the int range, then you should use long, or failing in that, BigInteger.

    Use the information in this question to create a random BigInteger, and if it is even simply add 1 to it.

    BigInteger randomOdd(BigInteger min, BigInteger max) {
        BigInteger range = max.subtract(min);
    
        // expected iterations: 2 - max iterations: infinite
        BigInteger tmp;
        do {
            tmp = new BigInteger(n.bitLength(), rng); // rng is your Random Number Generator
        } while (tmp.compareTo(range) >= 0);
    
        BigInteger result = min.add(tmp);
    
        // force the result to be odd
        // TODO: will this push it over max?
        result = result.or(BigInteger.ONE); 
    
        return result;
    }
    

    Alternatively, you could use a method on the BigInteger class: BigInteger.probablePrime():

    public static BigInteger probablePrime(int bitLength,
    Random rnd)

    Returns a positive BigInteger that is probably prime, with the specified bitLength. The probability that a BigInteger returned by this method is composite does not exceed 2^100.

    Parameters:

    • bitLength – bitLength of the returned BigInteger.
    • rnd – source of random bits used to select candidates to be tested for primality.

    Returns:

    • a BigInteger of bitLength bits that is probably prime

    If it’s probably prime, it’s also probably odd.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have simple question about floating number, double temp; std::cout.precision(std::numeric_limits<double>::digits10); temp = 12345678901234567890.1234567890; std::cout
I have a simple question. For my android app, I'm planning on using the
I have a simple question - basically I want to fetch all ActiveRecords of
I am using HP webOS 3.0 and the Enyo framework. I have simple question
I have a simple question. Is there a way ( using reflections I suppose
I have a simple question in asp.net. I want to know if it is
I have a simple question, which I want to know, what kind of libraries
I have very simple question. I am not using it but I have curiosity
I have simple question. User supplies URL to my PHP script where I fetch
I have simple type Question : public class Question { public string[] Tags {

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.