This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import System.Random | |
main = print e | |
e :: Double | |
e = (+1).average $ map (length . takeWhile (<1) . scanl1 (+) . randomReals) [1..1000000] | |
where | |
average :: [Int] -> Double | |
average x = fromIntegral (sum x) / fromIntegral (length x) -- This is a rubbish (slow) way to average | |
randomReals :: Int -> [Double] | |
randomReals = randomRs (0.0,1) . mkStdGen more than 500000 takes a while | |
-- This generates a random seed from each number and then makes a list of values in(0,1) |