Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Re: Can I seed srand() with results from rand()?

by Anonymous Monk
on Jul 11, 2003 at 16:59 UTC ( [id://273479]=note: print w/replies, xml ) Need Help??


in reply to Re: Can I seed srand() with results from rand()?
in thread Can I seed srand() with results from rand()?

> He is looking for predictability.

There's predictability and there's predictibility. It tends to be bad for simulations if your "random" numbers start being the same on every pass through the main loop.

> Also, calling garden variety rand() does not reduce the entropy of the system because garden variety rand() is purely deterministic.

Entropy measures the number of possible states of a system. Determinism is about the transitions between states. The two concepts are largely orthogonal.

  • Comment on Re: Re: Can I seed srand() with results from rand()?

Replies are listed 'Best First'.
Re: Re: Re: Can I seed srand() with results from rand()?
by thor (Priest) on Jul 11, 2003 at 18:55 UTC
    There's predictability and there's predictibility. It tends to be bad for simulations if your "random" numbers start being the same on every pass through the main loop.
    It all depends on the application. Perhaps you are looking for something in a large set with a certain property. So, rather than iterate through, you pick a random starting point. IIRC, there are non-deterministic primality tests that take a random input and tell you whether a number is composite or not. In this case, you want to keep the one random input that tells you that the number under examination is composite if you want to prove it. If I can find an example of such an algorithm later, I'll update this node.
    Entropy measures the number of possible states of a system. Determinism is about the transitions between states. The two concepts are largely orthogonal.
    Yes. However, this does not contradict anything that I said. Some people were concerned about repeated calls to rand() reducing the strength of randomness of data received from places like /dev/rand and such. I was saying that this was not the case, as perl uses a PRNG, which given a specific input is completely deterministic.

    thor

    Update: Check this out.

      > Some people were concerned about repeated calls to rand()

      I believe the issue was srand().

      > I was saying that this was not the case, as perl uses a PRNG, which given a specific input is completely deterministic.

      You seem to think that deterministic steps never reduce the entropy of the system. That is not true. Perhaps you meant "reversible"? rand() is commonly reversible, but srand() can't be.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://273479]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-25 15:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found