Random Number Generator

Generate numbers within a selected range using a deterministic pseudo-random sequence.

Tool

Deterministic pseudo-random sequence.

Generated number: 90

How it works

Set minimum and maximum values, then click generate.

The generator uses a deterministic linear congruential sequence.

This keeps behavior consistent and reproducible across runs.

Examples

Pick a value between 1 and 10 for classroom activities.

Generate deterministic sample indices for repeatable demos.

FAQ

Is this cryptographically secure?

No. It is a deterministic pseudo-random generator for simple utility use.

What happens if max is smaller than min?

The tool shows a validation message until the range is valid.