-
Notifications
You must be signed in to change notification settings - Fork 1
/
Funciones_inyectivas.lean
115 lines (94 loc) · 2.39 KB
/
Funciones_inyectivas.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
-- ---------------------------------------------------------------------
-- Ejercicio 1. Realizar las siguientes acciones:
-- 1. Importar la librería de números reales.
-- 2. Abrir el espacio de nombre de las funciones.
-- ----------------------------------------------------------------------
import data.real.basic -- 1
open function -- 2
variable {c : ℝ}
-- ---------------------------------------------------------------------
-- Ejercicio 2. Demostrar que, para todo c la función
-- f(x) = x c
-- es inyectiva
-- ----------------------------------------------------------------------
-- 1ª demostración
-- ===============
example
: injective (λ x, x c) :=
begin
assume x1 : ℝ,
assume x2 : ℝ,
assume h1 : (λ x, x c) x1 = (λ x, x c) x2,
have h2 : x1 c = x2 c := h1,
show x1 = x2,
by exact (add_left_inj c).mp h2,
end
-- 2ª demostración
-- ===============
example
: injective (λ x, x c) :=
begin
intros x1 x2 h,
change x1 c = x2 c at h,
apply add_right_cancel h,
end
-- 3ª demostración
-- ===============
example
: injective (λ x, x c) :=
begin
intros x1 x2 h,
apply (add_left_inj c).mp,
exact h,
end
-- 4ª demostración
-- ===============
example
: injective (λ x, x c) :=
λ x1 x2 h, (add_left_inj c).mp h
-- ---------------------------------------------------------------------
-- Ejercicio 3. Demostrar que, para todo c distinto de cero la función
-- f(x) = x * c
-- es inyectiva
-- ----------------------------------------------------------------------
-- 1ª demostración
-- ===============
example
(h : c ≠ 0)
: injective (λ x, c * x) :=
begin
assume x1 : ℝ,
assume x2 : ℝ,
assume h1 : (λ x, c * x) x1 = (λ x, c * x) x2,
have h2 : c * x1 = c * x2 := h1,
show x1 = x2,
by exact (mul_right_inj' h).mp h1,
end
-- 2ª demostración
-- ===============
example
(h : c ≠ 0)
: injective (λ x, c * x) :=
begin
intros x1 x2 h',
dsimp at h',
apply mul_left_cancel₀ h,
exact h',
end
-- 3ª demostración
-- ===============
example
(h : c ≠ 0)
: injective (λ x, c * x) :=
begin
intros x1 x2 h',
dsimp at h',
exact (mul_right_inj' h).mp h'
end
-- 3ª demostración
-- ===============
example
{c : ℝ}
(h : c ≠ 0)
: injective (λ x, c * x) :=
λ x1 x2 h', mul_left_cancel₀ h h'