-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSuma_constante_es_inyectiva.lean
54 lines (43 loc) · 1.39 KB
/
Suma_constante_es_inyectiva.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
-- Suma_constante_es_inyectiva.lean
-- La función (x ↦ x + c) es inyectiva.
-- José A. Alonso Jiménez <https://jaalonso.github.io>
-- Sevilla, 24-octubre-2023
-- ---------------------------------------------------------------------
-- ---------------------------------------------------------------------
-- Demostrar que, para todo c la función
-- f(x) = x + c
-- es inyectiva
-- ----------------------------------------------------------------------
-- Demostración en lenguaje natural
-- ================================
-- Se usará el lema
-- (∀ a, b, c) [a + b = c + b → a = c] (L1)
-- Hay que demostrar que
-- (∀ x₁ x₂) [f(x₁) = f(x₂) → x₁ = x₂]
-- Sean x₁, x₂ tales que f(x₁) = f(x₂). Entonces,
-- x₁ + c = x₂ + c
-- y, por L1, x₁ = x₂.
-- Demostraciones con Lean4
-- ========================
import Mathlib.Data.Real.Basic
open Function
variable {c : ℝ}
-- 1ª demostración
example : Injective ((. + c)) :=
by
intro (x1 : ℝ) (x2 : ℝ) (h1 : x1 + c = x2 + c)
show x1 = x2
exact add_right_cancel h1
-- 2ª demostración
example : Injective ((. + c)) :=
by
intro x1 x2 h1
show x1 = x2
exact add_right_cancel h1
-- 3ª demostración
example : Injective ((. + c)) :=
fun _ _ h ↦ add_right_cancel h
-- Lemas usados
-- ============
-- variable {a b : ℝ}
-- #check (add_right_cancel : a + b = c + b → a = c)