-
Notifications
You must be signed in to change notification settings - Fork 1
/
Principio_de_explosion.lean
72 lines (59 loc) · 1.05 KB
/
Principio_de_explosion.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
-- ---------------------------------------------------------------------
-- Ejercicio. Demostrar que si 0 < 0, entonces a > 37 para cualquier
-- número a.
-- ----------------------------------------------------------------------
variable a : ℕ
-- 1ª demostración
-- ===============
example
(h : 0 < 0)
: a > 37 :=
begin
exfalso,
apply lt_irrefl 0 h,
end
-- Prueba
-- ======
/-
a : ℕ,
h : 0 < 0
⊢ a > 37
>> exfalso,
a : ℕ,
h : 0 < 0
⊢ false
>> apply lt_irrefl 0 h,
no goals
-/
-- Comentario: La táctica exfalso sustituye el objetivo por false.
-- 2ª demostración
-- ===============
example
(h : 0 < 0)
: a > 37 :=
absurd h (lt_irrefl 0)
-- 3ª demostración
-- ===============
example
(h : 0 < 0)
: a > 37 :=
begin
have h' : ¬ 0 < 0,
from lt_irrefl 0,
contradiction,
end
-- Prueba
-- ======
/-
a : ℕ,
h : 0 < 0
⊢ a > 37
>> have h' : ¬ 0 < 0,
>> from lt_irrefl 0,
h' : ¬0 < 0
⊢ a > 37
>> contradiction,
no goals
-/
-- Comentario: La táctica contradiction busca dos hipótesis
-- contradictorias.