-
Notifications
You must be signed in to change notification settings - Fork 39
/
Infinity.hs
56 lines (46 loc) · 1.47 KB
/
Infinity.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module Infinity where
odds :: [Int]
odds = [n | n <- [1 ..], n `mod` 2 /= 0]
-- | a list of all integer pythagorean triples with a² + b² = c²
pythagoreanTriples :: [(Int, Int, Int)]
pythagoreanTriples = [ (a, b, c)
| c <- [1 ..]
, b <- [1 .. c - 1]
, a <- [1 .. b - 1]
, a ^ 2 + b ^ 2 == c ^ 2
]
primes :: [Integer]
primes = 2 : [i | i <- [3,5..],
and [rem i p > 0 | p <- takeWhile (\p -> p^2 <= i) primes]]
-- | bottom, a computation which never completes successfully, aka as _|_
bottom :: a
bottom = bottom
-- | a CAF representing all integer numbers (https://wiki.haskell.org/Constant_applicative_form)
ints :: Num a => [a]
ints = from 1
where
from n = n : from (n + 1)
-- | the K combinator which drop its second argument
k :: a -> b -> a
k x _ = x
-- a_i+1 = (a_i + n/a_i)/2
next :: Fractional a => a -> a -> a
next n a_i = (a_i + n/a_i)/2
within :: (Ord a, Fractional a) => a -> [a] -> a
within eps (a:b:rest) =
if abs(a/b - 1) <= eps
then b
else within eps (b:rest)
root :: (Ord a, Fractional a) => a -> a -> a
root n eps = within eps (iterate (next n) 1)
infinityDemo :: IO ()
infinityDemo = do
putStrLn
"Infinite data structures and nonterminating computations -> laziness & list comprehension\n"
print $ take 100 ints
print $ take 10 [2,4 ..]
print $ take 10 pythagoreanTriples
print $ k "21 is just half the truth" undefined
print $ k 42 bottom
print ("square root of 2: " ++ show (root 2 0.000001))
putStrLn ""