answersLogoWhite

0


Best Answer

I guess the formula is 3x² MOD 11 where x is the last pseudo-random number. Just plug in the values:

x = 5 → next_val = 3 × 5² MOD 11 = 9

x = 9 → next_val = 3 × 9² MOD 11 = 1

x = 1 → next_val = 3 ×1² MOD 11 = 3

So the next three values would be 9, 1, 3.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the next three numbers in the pseudo-random number generator 3x 2mod 11 starting from 5?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the methods of generating pseudo random numbers write name of any pseudo random number generators?

There are many methods of generating pseudorandom numbers. Some of them are middle square (not very good), Mersenne twister, linear congruential generator (one the oldest used in math libraries, but subject to sequential corellation artifacts), and cryptographically secure generators.


What is Hardware random number generator?

In computing, a hardware random number generator is an apparatus that generates random numbers from a physical process.


What type of number generator is used to generate social insurance numbers in Canada?

The Luhn algorithm is used.


What is the next number in the sequence 25 36 49 64?

81. They are the perfect squares of numbers starting from 5.81. They are the perfect squares of numbers starting from 5.81. They are the perfect squares of numbers starting from 5.81. They are the perfect squares of numbers starting from 5.


Is 0.99 a natural number?

No because natural numbers are whole numbers starting from 1


The output of the pseudo-random number generator?

Is a set of numbers that look random and will pass most tests of randomness.


What is facotrs?

factors are numbers that are divisible by your starting number (will divide into your starting number). For example the factors of 12 are 2,3,4,6&12


What is the Median of the set of all the whole numbers starting from 1 and ending with 9?

The median of the set of all the whole numbers starting from 1 and ending with 9 is 5. The numbers are 1,2,3,4,5,6,7,8,9 and the median (middle number) is the number 5.


Has this number been used 108722108854563?

If you generated this number using a random numers list or random numbers generator, then the best guess would be that your use of it is the first.


Is -4 a natural number?

No. The natural numbers are the counting numbers {1, 2, 3, ...}.


Why 10 is a counting number while 0 is not a counting number?

It is a definitional thing. Counting numbers are whole numbers (integers) starting with 1.


HELP How does a random number generator choose a sample of people?

If the population is of size N, then you allocate the numbers 1 to N to them: one per element of the population. Then generate random numbers in the range 1 - N. The element whose number is thrown up by the generator is in the sample. In the unlikely event that a number is repeated, you ignore the repeat and continue drawing the sample until you have the required correct number in the sample.