-
Notifications
You must be signed in to change notification settings - Fork 1
/
Raices_enteras.hs
142 lines (122 loc) · 3.2 KB
/
Raices_enteras.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
-- Raices_enteras.hs
-- Raíces enteras.
-- José A. Alonso Jiménez <https://jaalonso.github.io>
-- Sevilla, 24-noviembre-2023
-- ---------------------------------------------------------------------
-- ---------------------------------------------------------------------
-- Definir la función
-- raizEnt :: Integer -> Integer -> Integer
-- tal que (raizEnt x n) es la raíz entera n-ésima de x; es decir, el
-- mayor número entero y tal que y^n <= x. Por ejemplo,
-- raizEnt 8 3 == 2
-- raizEnt 9 3 == 2
-- raizEnt 26 3 == 2
-- raizEnt 27 3 == 3
-- raizEnt (10^50) 2 == 10000000000000000000000000
--
-- Comprobar con QuickCheck que para todo número natural n,
-- raizEnt (10^(2*n)) 2 == 10^n
-- ---------------------------------------------------------------------
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
module Raices_enteras where
import Test.Hspec (Spec, hspec, it, shouldBe)
import Test.QuickCheck (quickCheck)
-- 1ª solución
-- ===========
raizEnt1 :: Integer -> Integer -> Integer
raizEnt1 x n =
last (takeWhile (\y -> y^n <= x) [0..])
-- 2ª solución
-- ===========
raizEnt2 :: Integer -> Integer -> Integer
raizEnt2 x n =
floor ((fromIntegral x)**(1 / fromIntegral n))
-- Nota. La solución anterior falla para números grandes. Por ejemplo,
-- λ> raizEnt2 (10^50) 2 == 10^25
-- False
-- 3ª solución
-- ===========
raizEnt3 :: Integer -> Integer -> Integer
raizEnt3 x n = aux (1,x)
where aux (a,b) | d == x = c
| c == a = c
| d < x = aux (c,b)
| otherwise = aux (a,c)
where c = (a+b) `div` 2
d = c^n
-- Comparación de eficiencia
-- =========================
-- λ> raizEnt1 (10^14) 2
-- 10000000
-- (6.15 secs, 6,539,367,976 bytes)
-- λ> raizEnt2 (10^14) 2
-- 10000000
-- (0.00 secs, 0 bytes)
-- λ> raizEnt3 (10^14) 2
-- 10000000
-- (0.00 secs, 25,871,944 bytes)
--
-- λ> raizEnt2 (10^50) 2
-- 9999999999999998758486016
-- (0.00 secs, 0 bytes)
-- λ> raizEnt3 (10^50) 2
-- 10000000000000000000000000
-- (0.00 secs, 0 bytes)
-- Comprobación de la propiedad
-- ============================
-- La propiedad es
prop_raizEnt :: Integer -> Bool
prop_raizEnt n =
raizEnt3 (10^(2*m)) 2 == 10^m
where m = abs n
-- La comprobación es
-- λ> quickCheck prop_raizEnt
-- +++ OK, passed 100 tests.
-- Verificación
-- ============
verifica :: IO ()
verifica = hspec spec
spec :: Spec
spec = do
it "e1" $
raizEnt1 8 3 `shouldBe` 2
it "e2" $
raizEnt1 9 3 `shouldBe` 2
it "e3" $
raizEnt1 26 3 `shouldBe` 2
it "e4" $
raizEnt1 27 3 `shouldBe` 3
it "e5" $
raizEnt2 8 3 `shouldBe` 2
it "e6" $
raizEnt2 9 3 `shouldBe` 2
it "e7" $
raizEnt2 26 3 `shouldBe` 2
it "e8" $
raizEnt2 27 3 `shouldBe` 3
it "e9" $
raizEnt3 8 3 `shouldBe` 2
it "e10" $
raizEnt3 9 3 `shouldBe` 2
it "e11" $
raizEnt3 26 3 `shouldBe` 2
it "e12" $
raizEnt3 27 3 `shouldBe` 3
-- La verificación es
-- λ> verifica
--
-- e1
-- e2
-- e3
-- e4
-- e5
-- e6
-- e7
-- e8
-- e9
-- e10
-- e11
-- e12
--
-- Finished in 0.0007 seconds
-- 12 examples, 0 failures