Likelihood of pairs in a range?

  • Context: Undergrad 
  • Thread starter Thread starter derrend
  • Start date Start date
  • Tags Tags
    Likelihood Range
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
derrend
Messages
1
Reaction score
0
Running a computer script (included below) I was testing to see how long it would take to match two numbers when selected at random from within a range. To my surprise the percentage of possibilities explored before finding a correct answer decreased as i raised the range.

Is this correct? It seems counter intuitive.--code--:
Code:
#!/usr/bin/python3

import sys
import random

x = int(sys.argv[1])
a = random.randint(0,x)
b = random.randint(0,x)

steps = 1
combos = x**2

while a != b:
	print('[{} {}]'.format(a,b), end=' ')
	a = random.randint(0,x)
	b = random.randint(0,x)
	steps += 1

percent = (steps / combos) * 100
print()
print()

print('[{} ! {}]'.format(a,b), end=' ')
print('equality!'.upper())
print('steps'.upper(), steps)
print('possble combinations = {}'.format(combos))
print('explored {}% possibilitys'.format(percent))
 
Last edited by a moderator:
Physics news on Phys.org
Each pair selected has a 1/x probability of being a match. It does not matter what the first pair member is. The second pair member has 1/x probability of matching. The expected number of guesses to get a match is going to be around x.

You are looking at the ratio of x to x2. Of course this decreases as x increases.
 
I'm not familiar with python, but if you want to do some experimentation with random numbers, you probably want to make sure first of all that you are using something better than the default random number method available in the language. Perhaps consider the following and see if that changes the result:

"Warning

The pseudo-random generators of this module should not be used for security purposes. Use os.urandom() or SystemRandom if you require a cryptographically secure pseudo-random number generator.

http://docs.python.org/2/library/random.html"
 
Last edited by a moderator:
jbriggs444 said:
Each pair selected has a 1/x probability of being a match.
It's 1/(x+1), not 1/x. The OP used randint(0,x), which returns a uniformly distributed random integer between 0 and x, inclusive.

The expected number of guesses to get a match is going to be around x.
x+1, to be precise.
hddd123456789 said:
I'm not familiar with python, but if you want to do some experimentation with random numbers, you probably want to make sure first of all that you are using something better than the default random number method available in the language.
Python's random module uses the Mersenne twister with a state size of 19937 bits. That is a very good pseudo random number generator. It is not the bad old rand().