This seems to be a really strange issue:

This is my code

#import <Foundation/Foundation.h>

int main (int argc, const char * argv[])
{

    @autoreleasepool {

        srand((unsigned int)time(NULL));
        int newRandomNumber = 0;
        newRandomNumber = rand() % 7;
        NSLog(@"%d", rand() % 7); //This prints out what i expected
        NSLog(@"newRandomNumber = %d", newRandomNumber); // This always prints out 0!

    }
    return 0;
}

If I replace that one line that says

newRandomNumber = rand() % 7

with

newRandomNumber = rand() % 8

everything works perfectly. Why is that the case?

link|improve this question
1  
Can't reproduce your problem in C. – Mat Oct 23 '11 at 14:42
1  
I'm able to reproduce this in Objective-C. Even with srand([[NSDate date] timeIntervalSince1970]). But passing smaller integer to srand() seems to fix it. – Lukman Oct 23 '11 at 14:47
2  
What do you get if you print rand()? Do you get the same number each time, or only something that is congruent to 0 modulo 7? – Omri Barel Oct 23 '11 at 14:48
feedback

3 Answers

Well, this

int seed;
for(seed = 1; seed < 10; seed++) {
    srand(seed);
    printf("%4d %16d\n", seed, rand());
}

prints

   1            16807
   2            33614
   3            50421
   4            67228
   5            84035
   6           100842
   7           117649
   8           134456
   9           151263

which makes me think that rand() = seed * 16807

http://en.wikipedia.org/wiki/Linear_congruential_generator confirms that CarbonLib indeed uses Xn+1 = Xn * 16807 to generate randoms.

link|improve this answer
Nice investigation! – Jacques Cousteau Oct 23 '11 at 17:59
Formula on Linux 2.6.32 I run is more complicated. It's of the form next = ( next * const_1 + const_2) % 32,768. obviously, maybe you reverse-engineered your platform's formula. It's implementation dependent though with constants that often are near-prime after twisting and turning them. – gnometorule Oct 23 '11 at 18:12
It's unlikely though to make them simply remainders w/o other transformations first. – gnometorule Oct 23 '11 at 18:13
feedback

seems unlikely but running some tests, after an srand the first rand seems always to be divisible by 7 at least in an int sized variable.

i got on several runs 1303562743, 2119476443, and 2120232758 all of which mod 7 to 0.

the second rand() works because it is the second rand(), throw a rand() before your first rand()... or better yet, just don't srand.

also see question:

C++: why is (rand() % anything) always 0

link|improve this answer
Grady player pretty much answers your question: this is because it is your first call to a number not truly randomly generated. However, one other point and one fact that still puzzles me: – gnometorule Oct 23 '11 at 16:19
(1) if you don't see with stand() at all, the system will always produce the sane number on first call. On my system, a 'next' variable keeps track of the next rand() value, and next is seeded to 1 if no srand() call happens. The value reported back is after adding and multiplying system constants and taking the result mod 32,768. This means you would still get 0 for a certain modulus user chosen on first call, in your case 7, but it could be another number. – gnometorule Oct 23 '11 at 16:23
1  
(2) the article talks about portability issues, which wouldn't be affected by using a modulus. Essentially it points it that time_t might not be properly castable to an unsigned int; and that it is better to not use mod, instead multiply to get your desired range (in your case, *7/RAND_MAX). As this objective C which I don't know, it might be an issue, but I doubt it. What puzzles me is that the time() value reported back gets updated internally at every global timer interrupt in update_tines() (on the LINUX 2.6.xx kernel in any case), and this should happen way between second ticks. – gnometorule Oct 23 '11 at 16:29
Why srand() would report back, as you say it does, essentially what amounts to 7 second increments (I know this isn't precisely what it means, but it seems related), makes me scratch my head. – gnometorule Oct 23 '11 at 16:30
feedback

http://eternallyconfuzzled.com/arts/jsw_art_rand.aspx

You are using srand and rand in a way that is known to cause trouble.

link|improve this answer
That's not relevant here. All that page says is that maybe the results won't be 100% distributed evenly, but it certainly shouldn't give the same results each time. – interjay Oct 23 '11 at 15:10
@interjay read the part about srand and time. rand()%7 is only enhancing the effect. – Banthar Oct 23 '11 at 15:26
1  
@Banthar: All that article says about time is that it's theoretically non-portable, even though it's portable across all implementations known to that author. And for that matter, the article never really explains why using rand in this way is a problem: it somehow guarantees a nonuniform distribution, but the article doesn't say how. (I think I know what the author is getting at, and it's something too minor to be worth noting for most purposes; but the article never says, so I can't know for sure!) – ruakh Oct 23 '11 at 15:51
@ruakh There is no real explanation because it depends on the implementation. Some implementations assume rand will be used that way and won't behave correctly otherwise. Even if time(0) is correctly casted to int, it still isn't good seed for srand. In this case non-random bits from time are returned back in rand()%7. If you follow the advice in the article the problem will disappear. – Banthar Oct 23 '11 at 16:51
feedback

Your Answer

 
or
required, but never shown

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