176k views
2 votes
Explain how to use random number assignment to generate 12 random numbers between 01-99 using the given row of numbers: 78086, 85201, etc?

1 Answer

7 votes

Final answer:

To create random numbers between 01-99, pairs of digits can be extracted from larger numbers, or an electronic random number generator function like randInt on a calculator can be used, repeating the process to get the desired number of samples.

Step-by-step explanation:

To generate 12 random numbers between 01-99 using the given row of numbers such as 78086, 85201, and so on, you can treat each pair of digits as a potential random number. For instance, from the number 78086, you can extract the pairs 78, 80, and 06. If a pair like 06 is extracted and you need non-leading-zero numbers, you just take it as 6. Keep in mind that this method might produce duplicates or numbers outside of your desired range (01-99), in which case you would need to skip over those and continue extracting from the subsequent numbers.

Using an electronic tool, you can utilize a calculator, computer, or an online random number generator. Many calculators and statistical software provide a function for generating random integers within a specified range. For example, using a calculator, you could use the function randInt to generate random integers between 1 and 99. The specific command might look something like this: 5:randInt(1,99). Repeat this process until you have your desired quantity of random numbers.

User Usha
by
8.7k points