vote up 4 vote down star

Hello everyone!

I need to generate two numbers that are NOT equal in PHP.

I know that I use $random1 = (rand()%9); to generate random a number between 0-9. I need to add something to this I guess.

Thanks!

flag

77% accept rate

11 Answers

vote up 15 vote down check
$rnd1 = rand(0,9);
do {
  $rnd2 = rand(0,9);
} while ($rnd1 == $rnd2);
link|flag
6  
Theoretically, this could loop forever if the numbers were truly random. Unlikely in most computer applications but the running time is nondeterministic, which may not be desirable. – paxdiablo Oct 11 at 11:05
Fortunately most computer's use practical and not theoretical random generators :). In return the two randoms are independent of each other (except for the original constraint). – Zed Oct 11 at 11:16
Thanks, works like a charm! – Fred Bergman Oct 11 at 11:23
@Fred, if you want to be sure this code won't run for years as suggested, you can set up a counter to count retries, and after a threshold simply return ($rnd1+1)%10, or whatever. – Zed Oct 11 at 11:30
2  
Actually, @DrJokepu, we do plan for that eventuality (not necessarily a meteorite but definitely a server location being destroyed). We have a backup site 50-odd kilometers away. I remember one paranoid asking what we'd do if a disaster took out both locations. My answer was that, for any disaster that big, we'd have a lot more problems on our hands than some lost data. – paxdiablo Oct 11 at 11:54
show 4 more comments
vote up 1 vote down

If you simply want unique numbers, just start at zero and add +1 for every new number.

If you need random unique numbers, just save your previous numbers in a list and when you need a new one, just generate random numbers until you found one, which is not in that list.

If you need unique identifiers, you can use the built-in function uniqid.

link|flag
vote up 5 vote down
$random1 = (rand() % 10)
$random2 = $random1 + (rand()%9)+1

In this way they are never equal(as at least 1 will be added to $random1 )

if both number have to be from 0-9, you just have to do it with a last mod-operation:

$random1 = (rand() % 10)
$random2 = ($random1 + (rand()%9)+1 ) %10
link|flag
I like that one. Nice use of modulus. – Kobi Oct 11 at 11:26
This mucks up the standard distribution - lower numbers become slightly more probable than higher ones, though in this case it may not be noticeable. – Chris Lutz Oct 12 at 2:21
@chris: please explain why lower numbers are slightly more probable. I cannot see why. – Peter Parker Oct 16 at 22:46
vote up -1 vote down

Hi

Interpreting your question rather heavily it looks like you want to pseudo-randomly generate 2 different integers between 0 and 9 inclusive ?

So generate the first, generate another, if it's the same as the first repeat until it isn't.

I assert, without justification, that this will be as efficient as any other method.

Regards

Mark

link|flag
and not biased by adding and stuff – High-Performance Mark Oct 11 at 10:32
2  
I wonder how this looks like in PHP code ;) – Zed Oct 11 at 10:34
vote up -1 vote down
$random1 = rand() % 9;
$random2 = ($random1 + 1) % 9;
link|flag
The second number here will be completely predictable based on the first number. – overstood Oct 11 at 21:55
The OP only stated that the numbers must not be equal. He never said that the second must be random. – codymanix Oct 11 at 23:05
+1 because, while a bit cheeky, this is exactly what the op asked for. Although I suppose $random1 = rand() % 9; $random2 = $rand1++; would work just as well ;) – Graham Oct 12 at 2:21
vote up 2 vote down
$random1 = 4;
$random2 = 5;
link|flag
Actually this is quite funny if it's based on that cartoon found here: xkcd.com/221. If it's not based on that, I guess it's not so funny :-) – paxdiablo Oct 11 at 11:57
It is in fact inspired by that comic :-D – overstood Oct 11 at 17:46
I assure you that there were both randomly generated. – overstood Oct 11 at 17:46
vote up 2 vote down

I think you'll find that rand()%9 will give you a number in the range 0 through 8 inclusive. If you want 0 through 9 inclusive, you should use rand()%10. I'm going to assume that's what you wanted but you could adjust the answer easily if 0 through 8 was what you really intended.

If you want two numbers in that range, the easiest way is to generate one in that range then generate another in one less than that range and, if it's identical or greater, increment it.

This is the mathematical way to do it, and it's deterministic (always two calls to rand() no matter what). Although unlikely, a true random number generator could produce a string of numbers all identical which would make the looping solutions unwise (you're likely to be using a linear generator so this probably won't be a problem).

On the first attempt, you have the full range to choose from (10 numbers, 0 through 9). On the second you have the full range minus the number already chosen. So, if your first number was 7, you generate a number from 0 through 8 and map 7 to 8 and 8 to 9:

$random1 = (rand() % 10);
$random2 = (rand() % 9);
if $random2 >= $random1 {
    $random2 = $random2 + 1;
}
link|flag
This introduces way much dependence between the randoms. If random1 is 5 for example, random2 will have a higher possibility to be 6 than any other number. – Zed Oct 11 at 11:16
I think if $random2 >= $random1 gives better changes, but maybe I'm missing another edge case. – Kobi Oct 11 at 11:23
Yeah, you're right @Kobi, that's what I meant to say, but it's late here :-) – paxdiablo Oct 11 at 11:35
@Zed, that was an artefact of my not writing it down correctly. The probabilities are correct if, as @Kobi points out, you use the correct statements for the mapping. – paxdiablo Oct 11 at 11:37
@Pax - that should be $random2 >= $random1. The way you have it now the odds are still wrong, and the numbers can end up equal. – Kobi Oct 11 at 11:40
vote up 28 vote down
$r = str_shuffle("0123456789");
$r1 = (int) $r[0];
$r2 = (int) $r[1];
link|flag
1  
Amazing.. There is a PHP function to do almost anything. Good solution.. – Pasta Oct 11 at 14:43
4  
Wow, that is actually a really neat solution. – Ben Torell Oct 11 at 19:31
vote up 2 vote down
function random($min, $max) {
    $stack = range($min, $max);
    shuffle($stack); 
    $nr1 = array_pop($stack);
    $nr2 = array_pop($stack);
    return array($nr1, $nr2);
}

This might do the trick without being a math wiz :)

link|flag
I'd guess shuffle is at least linear, so this doesn't scale up too well for max. However, this can work well if you need more than 2 distinct random numbers. – Kobi Oct 11 at 11:56
...more than 2 distinct random integers. – Zed Oct 11 at 12:47
vote up 1 vote down
$numbers = array_rand(range(0, 9), 2);

echo '<pre>';
print_r($numbers);
echo '</pre>';
link|flag
vote up 0 vote down

Alix Axel's solution was the most straightforward and worked fine for me. I wanted three random entries from an existing array, so I used

$rands = array_rand(range(0,count($otherarray)),3);

And then displayed entries for which the key was in $rands.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.