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 710029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T04:34:10+00:00 2026-05-14T04:34:10+00:00

For a simple simulation in C, I need to generate exponential random variables. I

  • 0

For a simple simulation in C, I need to generate exponential random variables. I remember reading somewhere (but I can’t find it now, and I don’t remember why) that using the rand() function to generate random integers in a fixed range would generate non-uniformly distributed integers. Because of this, I’m wondering if this code might have a similar problem:

//generate u ~ U[0,1]
u = (   (double)rand() / ((double)(RAND_MAX));
//inverse of exponential CDF to get exponential random variable
expon = -log(1-u) * mean;

Thank you!

  • 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-05-14T04:34:10+00:00Added an answer on May 14, 2026 at 4:34 am

    The problem with random numbers in a fixed range is that a lot of people do this for numbers between 100 and 200 for example:

    100 + rand() % 100
    

    That is not uniform. But by doing this it is (or is close enough to uniform at least):

    u = 100 + 100 * ((double)rand() / ((double)(RAND_MAX));
    

    Since that’s what you’re doing, you should be safe.

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

Sidebar

Ask A Question

Stats

  • Questions 490k
  • Answers 490k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer A variable is an abstraction (a convenient name) for a… May 16, 2026 at 9:11 am
  • Editorial Team
    Editorial Team added an answer Are you sure there isn't some script applying the png… May 16, 2026 at 9:11 am
  • Editorial Team
    Editorial Team added an answer You don't have to parse the data. It is already… May 16, 2026 at 9:11 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

Alright, so here is my issue. I need to generate xml in Java to
I'm coming from a Java background and trying to port a simple version of
I'm in a situation where I need to push image storage for a number
The situation is, that i need to create table in grid view looking like
I recently created a turn-based game server that can accept 10s of thousands of
I have a simple situation. A large organisation is using several different versions of
I'm writing a small article on humanly readable alternatives to Guids/UIDs, for example those
I like to create an instance of a custom class by passing it a
We are beginning the process of moving from Web Forms to MVC for all

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.