-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConmutatividad_del_supremo.lean
97 lines (82 loc) · 2.67 KB
/
Conmutatividad_del_supremo.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
-- Conmutatividad_del_supremo.lean
-- En los retículos, x ⊔ y = y ⊔ x
-- José A. Alonso Jiménez <https://jaalonso.github.io>
-- Sevilla, 18-septiembre-2023
-- ---------------------------------------------------------------------
-- ---------------------------------------------------------------------
-- Demostrar que en los retículos se verifica que
-- x ⊔ y = y ⊔ x
-- para todo x e y en el retículo.
-- ----------------------------------------------------------------------
-- Demostración en lenguaje natural
-- ================================
-- Es consecuencia del siguiente lema auxiliar
-- (∀ a, b)[a ⊔ b ≤ b ⊔ a] (1)
-- En efecto, sustituyendo en (1) a por x y b por y, se tiene
-- x ⊔ y ≤ y ⊔ x (2)
-- y sustituyendo en (1) a por y y b por x, se tiene
-- y ⊔ x ≤ x ⊔ y (3)
-- Finalmente, aplicando la propiedad antisimétrica de la divisibilidad
-- a (2) y (3), se tiene
-- x ⊔ y = y ⊔ x
--
-- Para demostrar (1), por la definición del supremo, basta demostrar
-- las siguientes relaciones
-- x ≤ y ⊔ x
-- y ≤ y ⊔ x
-- y ambas se tienen por la definición del supremo.
-- Demostraciones con Lean4
-- ========================
import Mathlib.Order.Lattice
variable {α : Type _} [Lattice α]
variable (x y z : α)
-- 1ª demostración del lema auxiliar
lemma aux : x ⊔ y ≤ y ⊔ x :=
by
have h1 : x ≤ y ⊔ x :=
le_sup_right
have h2 : y ≤ y ⊔ x :=
le_sup_left
show x ⊔ y ≤ y ⊔ x
exact sup_le h1 h2
-- 2ª demostración del lema auxiliar
example : x ⊔ y ≤ y ⊔ x :=
by
apply sup_le
{ apply le_sup_right }
{ apply le_sup_left }
-- 3ª demostración del lema auxiliar
example : x ⊔ y ≤ y ⊔ x :=
sup_le le_sup_right le_sup_left
-- 1ª demostración
example : x ⊔ y = y ⊔ x :=
by
have h1 : x ⊔ y ≤ y ⊔ x :=
aux x y
have h2 : y ⊔ x ≤ x ⊔ y :=
aux y x
show x ⊔ y = y ⊔ x
exact le_antisymm h1 h2
-- 2ª demostración
example : x ⊔ y = y ⊔ x :=
by
apply le_antisymm
{ apply aux }
{ apply aux }
-- 3ª demostración
example : x ⊔ y = y ⊔ x :=
le_antisymm (aux x y) (aux y x)
-- 4ª demostración
example : x ⊔ y = y ⊔ x :=
by apply le_antisymm; simp ; simp
-- 5ª demostración
example : x ⊔ y = y ⊔ x :=
-- by apply?
sup_comm x y
-- Lemas usados
-- ============
-- #check (le_antisymm : x ≤ y → y ≤ x → x = y)
-- #check (le_sup_left : x ≤ x ⊔ y)
-- #check (le_sup_right : y ≤ x ⊔ y)
-- #check (sup_comm x y : x ⊔ y = y ⊔ x)
-- #check (sup_le : x ≤ z → y ≤ z → x ⊔ y ≤ z)