Is a function that calls Math.random() pure?

后端 未结 9 1586
[愿得一人]
[愿得一人] 2021-01-30 15:30

Is the following a pure function?

function test(min,max) {
   return  Math.random() * (max - min) + min;
}

My understanding is that a pure func

相关标签:
9条回答
  • 2021-01-30 15:52

    In addition to the other answers that correctly point out how this function is non-deterministic, it also has a side-effect: it will cause future calls to math.random() to return a different answer. And a random-number generator that doesn’t have that property will generally perform some kind of I/O, such as to read from a random device provided by the OS. Either is verboten for a pure function.

    0 讨论(0)
  • 2021-01-30 15:53

    A pure function is a function where the return value is only determined by its input values, without observable side effects

    By using Math.random, you are determining its value by something other than input values. It's not a pure function.

    source

    0 讨论(0)
  • 2021-01-30 15:55

    From mathematical point of view, your signature is not

    test: <number, number> -> <number>
    

    but

    test: <environment, number, number> -> <environment, number>
    

    where the environment is capable of providing results of Math.random(). And actually generating the random value mutates the environment as a side effect, so you also return a new environment, which is not equal to the first one!

    In other words, if you need any kind of input that does not come from initial arguments (the <number, number> part), then you need to be provided with execution environment (that in this example provides state for Math). The same applies to other things mentioned by other answers, like I/O or such.


    As an analogy, you can also notice this is how object-oriented programming can be represented - if we say, e.g.

    SomeClass something
    T result = something.foo(x, y)
    

    then actually we are using

    foo: <something: SomeClass, x: Object, y: Object> -> <SomeClass, T>
    

    with the object that has its method invoked being part of the environment. And why the SomeClass part of result? Because something's state could have changed as well!

    0 讨论(0)
  • 2021-01-30 15:59

    Pure functions always return the same value for same input. Pure functions are predictable and are referential transparent which means that we can replace the function call with the output returned and it will not change the working of the program.

    https://github.com/MostlyAdequate/mostly-adequate-guide/blob/master/ch3.md

    0 讨论(0)
  • 2021-01-30 16:12

    The simple answer to your question is that Math.random() violates rule #2.

    Many other answers here have pointed out that the presence of Math.random() means that this function is not pure. But I think it's worth saying why Math.random() taints functions that use it.

    Like all pseudorandom number generators, Math.random() starts with a "seed" value. It then uses that value as the starting point for a chain of low-level bit manipulations or other operations that result in an unpredictable (but not really random) output.

    In JavaScript, the process involved is implementation-dependent, and unlike many other languages, JavaScript provides no way to select the seed:

    The implementation selects the initial seed to the random number generation algorithm; it cannot be chosen or reset by the user.

    That's why this function isn't pure: JavaScript is essentially using an implicit function parameter that you have no control over. It's reading that parameter from data calculated and stored elsewhere, and therefore violates rule #2 in your definition.

    If you wanted to make this a pure function, you could use one of the alternative random number generators described here. Call that generator seedable_random. It takes one parameter (the seed) and returns a "random" number. Of course, this number isn't really random at all; it is uniquely determined by the seed. That's why this is a pure function. The output of seedable_random is only "random" in the sense that predicting the output based on the input is difficult.

    The pure version of this function would need to take three parameters:

    function test(min, max, seed) {
       return  seedable_random(seed) * (max - min) + min;
    }
    

    For any given triple of (min, max, seed) parameters, this will always return the same result.

    Note that if you wanted the output of seedable_random to be truly random, you'd need to find a way to randomize the seed! And whatever strategy you used would inevitably be non-pure, because it would require you to gather information from a source outside your function. As mtraceur and jpmc26 remind me, this includes all physical approaches: hardware random number generators, webcams with lens caps, atmospheric noise collectors -- even lava lamps. All of these involve using data calculated and stored outside the function.

    0 讨论(0)
  • 2021-01-30 16:13

    Would you be fine with the following:

    return ("" + test(0,1)) + test(0,1);
    

    be equivalent to

    var temp = test(0, 1);
    return ("" + temp) + temp;
    

    ?

    You see, the definition of pure is a function whose output does not change with anything other than its inputs. If we say that JavaScript had a way to tag a function pure and take advantage of this, the optimizer would be allowed to rewrite the first expression as the second.

    I have practical experience with this. SQL server allowed getdate() and newid() in "pure" functions and the optimizer would dedupe calls at will. Sometimes this would do something dumb.

    0 讨论(0)
提交回复
热议问题