-
Notifications
You must be signed in to change notification settings - Fork 1
/
Practica 6.hs
438 lines (356 loc) · 7.44 KB
/
Practica 6.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
doble x = 2 * x
-- Ejercicio 1
doble = \x -> 2 * x
-- Ppio de Ext
doble n = (\x -> 2 * x) n
-- Lado Izquierdo
doble n
-- Def doble
2 * n
-- Lado Derecho
(\x -> 2 * x) n
-- Beta reduccion, con x = n
2 * n
cuadruple x = 4 * x
compose doble doble = cuadruple
-- Ppio de Ext
compose doble doble n = cuadruple n
-- Lado Izquierdo
compose doble doble n
-- definicion de compose, con f = doble y g x = doble n
doble (doble n)
-- deficion de doble
doble (2 * n)
-- deficion de doble
2 * (2 * n)
-- aritmetica
4 * n
-- def cuadruple
cuadruple n
-- Ejercicio 2
-- a. para todo x. para todo y. x && y = not ((not x) || (not y))
x && y = not ((not x) || (not y))
-- 4 casos
-- CASO 1
-- x = True, y = True
-- Lado derecho
not ((not True) || (not True))
-- def not * 2
not (False || False)
-- def ||
not False
-- def not
True
-- def &&
True && True
-- CASO 2
-- x = False, y = True
-- Lado derecho
not ((not False) || (not True))
-- def not * 2
not (True || False)
-- def ||
not True
-- def not
False
-- Lado izquierdo
False && True
-- def &&
False
-- Caso 3
-- x = False, y = False
-- Lado derecho
not ((not False) || (not False))
-- def not * 2
not (True || True)
-- def ||
not True
-- def not
False
-- Lado izquierdo
False && False
-- def &&
False
-- Caso 4
-- x = True, y = False
-- Lado derecho
not ((not True) || (not False))
-- def not * 2
not (False || True)
-- def ||
not True
-- def not
False
-- Lado izquierdo
True && False
-- def &&
False
-- b. para todo x. para todo y. not (x || y) = not x && not y
not (x || y) == not x && not y
-- 4 Caminos
-- Caso 1
-- x = False ; y = False
-- Lado derecho
not False && not False
-- Def de not * 2
True && True
-- Def &&
True
--Lado Izquierdo
not (False || False)
-- Def ||
not (False)
-- Def not
True
-- Caso 2
-- x = False ; y = True
-- Lado derecho
not False && not True
-- Def de not * 2
True && False
-- Def &&
False
--Lado Izquierdo
not (False || True)
-- Def ||
not (True)
-- Def not
False
-- Caso 3
-- x = True ; y = False
-- Lado derecho
not True && not False
-- Def de not * 2
False && True
-- Def &&
False
--Lado Izquierdo
not (True || False)
-- Def ||
not (True)
-- Def not
False
-- Caso 4
-- x = True ; y = True
-- Lado derecho
not True && not True
-- Def de not * 2
False && False
-- Def &&
False
--Lado Izquierdo
not (True || True)
-- Def ||
not (True)
-- Def not
False
-- Ejercicio 3
suma' (x,y) = x + y
curry f x y = f (x,y)
suma x y = x + y
-- c. curry suma' = suma
-- Prpo Extencionalidad * 2
curry suma' x y = suma x y
-- Lado Izq
curry suma' x y
-- Def Curry, con f = suma', x = x, y = y
suma' (x,y)
-- Def suma'
x + y
-- Def suma
suma x y
uncurry f (x,y) = f x y
-- d. uncurry suma = suma'
-- Ppio de Ext UNA VEZ SOLA
uncurry suma (x,y) == suma' (x,y)
-- Lado Izq
uncurry suma (x,y)
-- Def uncurry, con f = suma, (x,y) = (x,y)
suma x y
-- def de suma
x + y
-- def suma'
suma' (x,y)
-- Ejercicio 4
curry fst = const
-- Ppio de Ext x2
curry fst n m = const n m
-- Lado Izq
curry fst n m
-- Def de curry
fst (n,m)
-- Def de fst
n
-- Lado Der
const n m
-- Def de const
n
uncurry f (x,y) = f x y
flip f x y = f y x
uncurry (flip const) = snd
-- Ppio de Ext una vez
uncurry (flip const) (n,m) = snd (n,m)
-- Lado izquierdo
uncurry (flip const) (n,m)
-- Def uncurry, f = (flip const), (x,y) = (n,m)
flip const n m
-- Def flip, f = const, x = n, y = m
const m n
-- Def const
m
-- Lado Derecho
snd (n,m)
-- Def snd
m
-- Ejercicio 5
curry f x y = f (x,y)
uncurry f (x,y) = f x y
a. para todo f. curry (uncurry f) = f
curry (uncurry f) = f
-- Ppio de Ext x2
curry (uncurry f) x y = f x y
-- Lado der
curry (uncurry f) x y
-- Def de curry
uncurry f (x,y)
-- Def de uncurry
f x y
b. para todo f'. uncurry (curry f') = f'
-- Ppio de Ext una vez
uncurry (curry f') (x,y) = f' (x,y)
-- Lado izq
uncurry (curry f') (x,y)
-- Def uncurry
curry f' x y
-- Def curry
f' (x,y)
-- Ejercicio 6
assoc :: (a,(b,c)) -> ((a,b),c)
assoc (x,(y,z)) = ((x,y),z)
ppAssoc :: (((a,b),c) -> d) -> (a,(b,c)) -> d
appAssoc f p = f (assoc p)
appAssoc (uncurry (uncurry f)) = uncurry (compose uncurry f)
-- Ppio de ext
appAssoc (uncurry (uncurry f)) (x,(y,z)) = uncurry (compose uncurry f) (x,(y,z))
-- lado izquierdo
appAssoc (uncurry (uncurry f)) (x,(y,z))
-- def de appasco
uncurry (uncurry f) (assoc (x,(y,z)))
-- def de assoc
uncurry (uncurry f) ((x,y),z)
-- def de uncurry
uncurry f (x,y) z
-- def de uncurry
f x y z
-- Lado derecho
uncurry (compose uncurry f) (x,(y,z))
-- Def uncurry
compose uncurry f x (y,z)
-- Def compose
uncurry (f x) (y,z)
-- Def uncurry
f x y z
compose f g x = f (g x)
-- Ejercicio 7
(f . g) x = f (g x)
cuadruple = doble . doble
doble = id . (*2)
twice f = f . f
many f 0 = id
many f n = f . (many f (n - 1))
i. para todo f. para todo g. f . g = compose f g
-- ppio de ext
(f . g) x = compose f g x
--lado izq
(f . g) x
-- def de .
f (g x)
--lado der
compose f g x
-- def de compose
f (g x)
swap (x,y) = (y,x)
swap . swap = id
-- ppio de ext
(swap . swap) (x,y) = id (x,y)
-- Lado izquierdo
(swap . swap) (x,y)
-- Def (.)
swap (swap (x,y))
-- Def swap de adentro
swap (y,x)
-- Def swap
(x,y)
-- Def id
id (x,y)
iii. para todo f. para todo g. para todo h.
f . (g . h) = (f . g) . h
-- Ppio de ext
f . (g . h) x = (f . g) . h x
-- lado izq
f . (g . h) x
-- def . de mas a la izquierda
f ((g . h) x)
-- def de .
f (g (h x))
-- Lado der
(f . g) . h x
-- def . de mas a la derecha
(f . g) (h x)
-- def de .
f (g (h x))
curry f x y = f (x,y)
iv. curry . uncurry = id
-- Ppio de ext x3
(curry . uncurry) f x y = id f x y
--lado izq
(curry . uncurry) f x y
-- def .
curry (uncurry f) x y
-- def curry
uncurry f (x,y)
-- def uncurry
f x y
-- lado der
f x y
assoc :: (a,(b,c)) -> ((a,b),c)
assoc (x,(y,z)) = ((x,y),z)
appAssoc :: (((a,b),c) -> d) -> (a,(b,c)) -> d
appAssoc f p = f (assoc p)
appAssoc f = f . assoc
-- Ppio ext una vez
appAssoc f (x,(y,z)) = (f . assoc) (x,(y,z))
-- Lado izquierdo
appAssoc f (x,(y,z))
-- Def appAssoc, f = f, p = (x,(y,z))
f (assoc (x,(y,z)))
-- Def de .
(f . assoc) (x,(y,z))
doble . doble = cuadruple
-- ya demostramos que doble . doble = cuadruple
doble . doble = doble . doble
ii. para todo f'. curry (uncurry (curry f')) = curry f'
-- ya demostramos que uncurry (curry f) = f
-- Entonces (uncurry (curry f') = f'
curry f' = curry f'
iii. para todo f.
appAssoc (uncurry (uncurry f)) = (uncurry . uncurry) f . assoc
-- ya demostramos que appAssoc f = f . assoc
-- entonces siendo f = (uncurry (uncurry f)) -> appAssoc (uncurry (uncurry f)) = (uncurry (uncurry f)) . assoc
(uncurry (uncurry f)) . assoc = (uncurry . uncurry) f . assoc
-- ya demostramos que (f . g) x = f (g x)
-- entonmces siendo f = uncurry, g = uncurry y x = f -> uncurry . uncurry f = uncurry (uncurry f)
(uncurry (uncurry f)) . assoc = (uncurry (uncurry f)) . assoc
iv. para todo f.
(uncurry . uncurry) f . assoc = uncurry (uncurry . f)
-- nosotros ya demostramos que appAssoc f = f . assoc
-- entonces siendo f = (uncurry . uncurry) f -> (uncurry . uncurry) f . assoc = appAssoc (uncurry . uncurry) f
appAssoc (uncurry . uncurry) f = uncurry (uncurry . f)
-- nosotros ya demostramos que appAssoc f . g = compose f g
-- entonces siendo f = uncurry y g = f -> uncurry . g = compose uncurry f
appAssoc (uncurry . uncurry) f = uncurry (compose uncurry f)
-- nostros ya demostramos que appAssoc (uncurry (uncurry f)) = uncurry (compose uncurry f)
appAssoc (uncurry . uncurry) f = appAssoc (uncurry (uncurry f))
y estas son iguales
(uncurry . uncurry) appAssoc f
-- ya demostramos que uncurry (uncurry f) (assoc (x,(y,z))) = uncurry (compose uncurry f) (x,(y,z))