What is Random Number Generator?
A random integer generator producing unbiased, uniformly distributed values across any user-defined numeric interval.
How to Use This Calculator
- Enter minimum and maximum bounds.
- Choose how many numbers to generate.
- Select whether duplicate numbers are allowed.
The Mathematical Formula & Variables
R = floor(rand() * (Max - Min + 1)) + Min
Step-by-Step Worked Example
Scenario: Random number between 1 and 100.
- Total integer states = 100 - 1 + 1 = 100.
- Random selection yields uniform outcome.
Result: 42
Frequently Asked Questions
Are these numbers completely fair?
Yes, random numbers are generated using uniform probability distributions where every integer in the range has an identical chance of selection.