Almost every programming language has a `Rand` function to generate a Random Number, but how computer generates a random number. In this post, I will try to answer that very question. To understand how a computer generates a Random Number, we must understand how a computer works? A computer works in a simple way, you are given a set of instructions and it will process those instructions by following certain steps. Simple Input -> Process -> Output flow.
We all know the fact that Computers are great at following instructions and doing computations, but when you tell the computer to “give me a random number”, The computer is confused, “what is Random?”, “How will you define Random?”, “I don’t understand Random…”.

Hence, the Random number generated by a computer is not a Random number per se, in algorithmic terminology, we call it a “Pseudo-Random Number”.
A Pseudo-Random Number generation algorithm (also known as Pseudo-Random Number Generator (P.R.N.G.)) starts with a number known as “seed” and then follows some instructions to generate the next Pseudo-Random Number and so on and when it reaches its limitation, whether it’s calculation limit or any other defined limit, it again starts from the seed due to which it’s bound to repeat its sequence. The duration after which a pseudo-random number generator repeats its sequence is called “period”. The period of a PRNG defines its efficiency, the higher the period the better the algorithm.
Let me explain with some examples. No worries, instead of Code, I will write simple instructions
GenerateARandomNumber
Start Return 13 End
I know the instructions in the above code look stupid, but it’s an algorithm with the Seed 13 and Period 0 (since it will always return the same number).
Let’s make it a little better:
GenerateARandomNumber
Start OriginalSeed: 13 NewSeed: OriginalSeed * 2 IF NewSeed < 100 return OriginalSeed ELSE return NewSeed End
In the instructions above, we are starting with Seed as 13 and the next Pseudo-Random Number is generated by multiplying the number by 2 and so on till it reaches 100 and after 100, we are again starting with seed so the sequence will be repeated.
The resultant sequence will be: 13, 26, 52, 13, 26, 52, 13…
So the period of this algorithm will be 3 since the sequence is repeated after 3 pseudo-random numbers.
Conclusion:
- Though we call it a Random Number, it’s not actually random, a PRNG follows a set of instructions to calculate the Random Number.
- The random number generators start with a seed and follow some instructions to generate the next pseudo-random number and so on.
- The period of a PRNG is the number after which it repeats its sequence and is used to measure the efficiency of the algorithm.