-
Notifications
You must be signed in to change notification settings - Fork 1
/
Introduccion_de_la_conjuncion.lean
98 lines (83 loc) · 1.74 KB
/
Introduccion_de_la_conjuncion.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
-- ---------------------------------------------------------------------
-- Ejercicio. Sean x e y dos números tales que
-- x ≤ y
-- ¬ y ≤ x
-- entonces
-- x ≤ y ∧ x ≠ y
-- ----------------------------------------------------------------------
import data.real.basic
variables {x y : ℝ}
-- 1ª demostración
-- ===============
example
(h₀ : x ≤ y)
(h₁ : ¬ y ≤ x)
: x ≤ y ∧ x ≠ y :=
begin
split,
{ assumption },
intro h,
apply h₁,
rw h,
end
-- Prueba
-- ======
/-
x y : ℝ,
h₀ : x ≤ y,
h₁ : ¬y ≤ x
⊢ x ≤ y ∧ x ≠ y
>> split,
| ⊢ x ≤ y
| >> { assumption },
| ⊢ x ≠ y
| >> intro h,
| h : x = y
| ⊢ false
| >> apply h₁,
| ⊢ y ≤ x
| >> rw h.
no goals
-/
-- Comentario: La táctica split, cuando el objetivo es una conjunción
-- (P ∧ Q), aplica la regla de introducción de la conjunción; es decir,
-- sustituye el objetivo por dos nuevos subobjetivos (P y Q).
-- 2ª demostración
-- ===============
example
(h₀ : x ≤ y)
(h₁ : ¬ y ≤ x)
: x ≤ y ∧ x ≠ y :=
⟨h₀, λ h, h₁ (by rw h)⟩
-- Comentario: La notación ⟨h0, h1⟩, cuando el objetivo es una conjunción
-- (P ∧ Q), aplica la regla de introducción de la conjunción donde h0 es
-- una prueba de P y h1 de Q.
-- 3ª demostración
-- ===============
example
(h₀ : x ≤ y)
(h₁ : ¬ y ≤ x)
: x ≤ y ∧ x ≠ y :=
begin
have h : x ≠ y,
{ contrapose! h₁,
rw h₁ },
exact ⟨h₀, h⟩,
end
-- Prueba
-- ======
/-
x y : ℝ,
h₀ : x ≤ y,
h₁ : ¬y ≤ x
⊢ x ≤ y ∧ x ≠ y
>> have h : x ≠ y,
>> { contrapose! h₁,
h₁ : x = y
⊢ y ≤ x
>> rw h₁ },
h : x ≠ y
⊢ x ≤ y ∧ x ≠ y
>> exact ⟨h₀, h⟩,
no goals
-/