-
Notifications
You must be signed in to change notification settings - Fork 1
/
Pruebas_de_P→(Q→P).lean
79 lines (63 loc) · 1.3 KB
/
Pruebas_de_P→(Q→P).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
-- Pruebas de P → (Q → P)
-- ======================
-- ----------------------------------------------------
-- Ej. 1. (p. 13) Demostrar
-- P → (Q → P)
-- ----------------------------------------------------
import tactic
variables (P Q : Prop)
-- 1ª demostración
example : P → (Q → P) :=
assume h1 : P,
show Q → P, from
( assume h2 : Q,
show P, from h1)
-- 2ª demostración
example : P → (Q → P) :=
assume (h1 : P),
show Q → P, from
( assume h2 : Q, h1)
-- 3ª demostración
example : P → (Q → P) :=
assume (h1 : P),
show Q → P, from
(λ h2, h1)
-- 4ª demostración
example : P → (Q → P) :=
assume (h1 : P), (λ h2, h1)
-- 5ª demostración
example : P → (Q → P) :=
λ h1, λ h2, h1
-- 6ª demostración
example : P → (Q → P) :=
λ h1 h2, h1
-- 7ª demostración
example : P → (Q → P) :=
λ h _, h
-- 8ª demostración
example : P → (Q → P) :=
-- by library_search
imp_intro
-- 9ª demostración
example : P → (Q → P) :=
begin
intro h1,
intro h2,
exact h1,
end
-- 10ª demostración
example : P → (Q → P) :=
begin
intros h1 h2,
exact h1,
end
-- 11ª demostración
example : P → (Q → P) :=
λ h1 h2, h1
-- 12ª demostración
example : P → (Q → P) :=
-- by hint
by tauto
-- 13ª demostración
example : P → (Q → P) :=
by finish