-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIntroduccion_del_condicional.lean
79 lines (64 loc) · 1.12 KB
/
Introduccion_del_condicional.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
-- Introducción del condicional en Lean
-- ====================================
-- ----------------------------------------------------
-- Ej. 1. (p. 9) Demostrar que
-- P → P
-- ----------------------------------------------------
import tactic
variable (P : Prop)
-- 1ª demostración
example : P → P :=
assume h : P,
show P, from h
-- 2ª demostración
example : P → P :=
assume : P,
show P, from this
-- 3ª demostración
example : P → P :=
assume : P,
show P, from ‹P›
-- 4ª demostración
example : P → P :=
assume h : P, h
-- 5ª demostración
example : P → P :=
λ h, h
-- 6ª demostración
example : P → P :=
-- by library_search
id
-- 7ª demostración
example : P → P :=
begin
intro h,
exact h,
end
-- 8ª demostración
example : P → P :=
begin
intro,
exact ‹P›,
end
-- 9ª demostración
example : P → P :=
begin
intro h,
assumption,
end
-- 10ª demostración
example : P → P :=
begin
intro,
assumption,
end
-- 11ª demostración
example : P → P :=
-- by hint
by tauto
-- 12ª demostración
example : P → P :=
by finish
-- 13ª demostración
example : P → P :=
by simp