-
Notifications
You must be signed in to change notification settings - Fork 1
/
Declaracion_de_variables_en_secciones.lean
110 lines (77 loc) · 3.54 KB
/
Declaracion_de_variables_en_secciones.lean
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
-- ---------------------------------------------------------------------
-- Ejercicio 1. Importar la librería básica de los números reales.
-- ---------------------------------------------------------------------
import data.real.basic
-- ---------------------------------------------------------------------
-- Ejercicio 2. Crear una sección.
-- ---------------------------------------------------------------------
section
-- ---------------------------------------------------------------------
-- Ejercicio 3. Declarar que a, b y c son variables sobre los números
-- reales.
-- ---------------------------------------------------------------------
variables a b c : ℝ
-- ---------------------------------------------------------------------
-- Ejercicio 4. Calcular el tipo de a.
-- ---------------------------------------------------------------------
-- #check a
-- Comentario: Al colocar el cursor sobre check se obtiene
-- a : ℝ
-- ---------------------------------------------------------------------
-- Ejercicio 5. Calcular el tipo de a + b.
-- ---------------------------------------------------------------------
-- #check a + b
-- Comentario: Al colocar el cursor sobre check se obtiene
-- a + b : ℝ
-- ---------------------------------------------------------------------
-- Ejercicio 6. Comprobar que a es un número real.
-- ---------------------------------------------------------------------
-- #check (a : ℝ)
-- Comentario: Al colocar el cursor sobre check se obtiene
-- a : ℝ
-- ---------------------------------------------------------------------
-- Ejercicio 7. Calcular el tipo de
-- mul_comm a b
-- ---------------------------------------------------------------------
-- #check mul_comm a b
-- Comentario: Al colocar el cursor sobre check se obtiene
-- mul_comm a b : a * b = b * a
-- ---------------------------------------------------------------------
-- Ejercicio 8. Comprobar que el tipo de
-- mul_comm a b
-- es
-- a * b = b * a)
-- ---------------------------------------------------------------------
-- #check (mul_comm a b : a * b = b * a)
-- Comentario: Al colocar el cursor sobre check se obtiene
-- mul_comm a b : a * b = b * a
-- ---------------------------------------------------------------------
-- Ejercicio 9. Calcular el tipo de
-- mul_assoc c a b
-- ---------------------------------------------------------------------
-- #check mul_assoc c a b
-- Comentario: Al colocar el cursor sobre check se obtiene
-- mul_assoc c a b : c * a * b = c * (a * b)
-- ---------------------------------------------------------------------
-- Ejercicio 10. Calcular el tipo de
-- mul_comm a
-- ---------------------------------------------------------------------
-- #check mul_comm a
-- Comentario: Al colocar el cursor sobre check se obtiene
-- mul_comm a : ∀ (b : ℝ), a * b = b * a
-- ---------------------------------------------------------------------
-- Ejercicio 11. Calcular el tipo de
-- mul_comm
-- ---------------------------------------------------------------------
-- #check mul_comm
-- Comentario: Al colocar el cursor sobre check se obtiene
-- mul_comm : ∀ (a b : ?M_1), a * b = b * a
-- ---------------------------------------------------------------------
-- Ejercicio 12. Calcular el tipo de
-- @mul_comm
-- ---------------------------------------------------------------------
-- #check @mul_comm
-- Comentario: Al colocar el cursor sobre check se obtiene
-- mul_comm : ∀ {G : Type u_1} [_inst_1 : comm_semigroup G] (a b : G),
-- a * b = b * a
end