-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathejsClase05.hs
70 lines (50 loc) · 1.78 KB
/
ejsClase05.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
sumaDivisoresHasta :: Int -> Int -> Int
sumaDivisoresHasta num tope | tope == 1 = 1
| mod num tope == 0 = tope + sumaDivisoresHasta num (tope - 1)
| mod num tope /= 0 = sumaDivisoresHasta num (tope - 1)
{-
calculo los divisores, e.g. m con tope n, me fijo el resto de (m n) y si es 0 sumo el tope y pruebo n-1 recursivamente (n es divisor)
si n no es divisor, ignoro ese n y pruebo n-1 recursivo
-}
sumaDivisores :: Int -> Int
sumaDivisores num = sumaDivisoresHasta num num
{-
NO ENTRA EN EL TP
NO LO HAGAS ASI
-}
divisores :: Int -> [Int]
divisores n = [x | x <- [1..(n)], mod n x == 0]
sumDiv :: Int -> Int
sumDiv n = sum (divisores n)
{-
Hasta aca
-}
menorDivDesde :: Int -> Int -> Int
menorDivDesde n m | mod n m == 0 = m
| otherwise = menorDivDesde n (m + 1)
menorDiv :: Int -> Int
menorDiv 1 = 1
menorDiv n = menorDivDesde n 2
esPrimo :: Int -> Bool
--esPrimo n = sumaDivisores n == (n + 1)
esPrimo n = menorDiv n == n
esPrimoDesde n | sumaDivisores n == (n + 1) = n
| otherwise = esPrimoDesde (n + 1)
nEsimoPrimoDesde :: Int -> Int -> Int -> Int
nEsimoPrimoDesde n c p | c == n = p - 1
| esPrimo p = nEsimoPrimoDesde n (c + 1) (p + 1)
| otherwise = nEsimoPrimoDesde n c (p + 1)
nEsimoPrimo :: Int -> Int
nEsimoPrimo n = nEsimoPrimoDesde n 0 2
fac 0 = 1
fac 1 = 1
fac n = n * fac (n-1)
{-
esFactorial :: Int -> Int -> Bool
esFactorial n i | n == factorial i = True
| n <= factorial i = False
| otherwise = esFactorial n (i + 1)
-}
menorFactDesdeI :: Int -> Int -> Int
menorFactDesdeI n k | n > fac k = menorFactDesdeI n (k + 1)
| n <= fac k = fac k