2023-06-15 21:31:58 +00:00
|
|
|
|
import Bookshelf.Enderton.Set.Chapter_2
|
2023-06-29 21:25:59 +00:00
|
|
|
|
import Bookshelf.Enderton.Set.OrderedPair
|
|
|
|
|
import Bookshelf.Enderton.Set.Relation
|
2023-07-05 22:04:43 +00:00
|
|
|
|
import Mathlib.Tactic.CasesM
|
2023-06-07 02:16:06 +00:00
|
|
|
|
|
2023-06-29 21:30:48 +00:00
|
|
|
|
/-! # Enderton.Set.Chapter_3
|
2023-06-07 02:16:06 +00:00
|
|
|
|
|
|
|
|
|
Relations and Functions
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
namespace Enderton.Set.Chapter_3
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Theorem 3B
|
2023-06-10 22:01:23 +00:00
|
|
|
|
|
2023-06-08 23:57:02 +00:00
|
|
|
|
If `x ∈ C` and `y ∈ C`, then `⟨x, y⟩ ∈ 𝒫 𝒫 C`.
|
|
|
|
|
-/
|
2023-06-20 21:02:09 +00:00
|
|
|
|
theorem theorem_3b {C : Set α} (hx : x ∈ C) (hy : y ∈ C)
|
2023-06-10 22:01:23 +00:00
|
|
|
|
: OrderedPair x y ∈ 𝒫 𝒫 C := by
|
2023-06-20 21:02:09 +00:00
|
|
|
|
have hxs : {x} ⊆ C := Set.singleton_subset_iff.mpr hx
|
|
|
|
|
have hxys : {x, y} ⊆ C := Set.mem_mem_imp_pair_subset hx hy
|
2023-06-08 23:57:02 +00:00
|
|
|
|
exact Set.mem_mem_imp_pair_subset hxs hxys
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.1
|
2023-06-10 03:03:06 +00:00
|
|
|
|
|
|
|
|
|
Suppose that we attempted to generalize the Kuratowski definitions of ordered
|
|
|
|
|
pairs to ordered triples by defining
|
|
|
|
|
```
|
2023-06-10 22:01:23 +00:00
|
|
|
|
⟨x, y, z⟩* = {{x}, {x, y}, {x, y, z}}.open Set
|
|
|
|
|
|
2023-06-10 03:03:06 +00:00
|
|
|
|
```
|
|
|
|
|
Show that this definition is unsuccessful by giving examples of objects `u`,
|
|
|
|
|
`v`, `w`, `x`, `y`, `z` with `⟨x, y, z⟩* = ⟨u, v, w⟩*` but with either `y ≠ v`
|
|
|
|
|
or `z ≠ w` (or both).
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_1 {x y z u v w : ℕ}
|
2023-06-10 03:03:06 +00:00
|
|
|
|
(hx : x = 1) (hy : y = 1) (hz : z = 2)
|
|
|
|
|
(hu : u = 1) (hv : v = 2) (hw : w = 2)
|
|
|
|
|
: ({{x}, {x, y}, {x, y, z}} : Set (Set ℕ)) = {{u}, {u, v}, {u, v, w}}
|
|
|
|
|
∧ y ≠ v := by
|
|
|
|
|
apply And.intro
|
|
|
|
|
· rw [hx, hy, hz, hu, hv, hw]
|
|
|
|
|
simp
|
|
|
|
|
· rw [hy, hv]
|
|
|
|
|
simp only
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.2a
|
2023-06-10 03:03:06 +00:00
|
|
|
|
|
|
|
|
|
Show that `A × (B ∪ C) = (A × B) ∪ (A × C)`.
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_2a {A : Set α} {B C : Set β}
|
2023-06-10 03:03:06 +00:00
|
|
|
|
: Set.prod A (B ∪ C) = (Set.prod A B) ∪ (Set.prod A C) := by
|
|
|
|
|
calc Set.prod A (B ∪ C)
|
|
|
|
|
_ = { p | p.1 ∈ A ∧ p.2 ∈ B ∪ C } := rfl
|
|
|
|
|
_ = { p | p.1 ∈ A ∧ (p.2 ∈ B ∨ p.2 ∈ C) } := rfl
|
|
|
|
|
_ = { p | (p.1 ∈ A ∧ p.2 ∈ B) ∨ (p.1 ∈ A ∧ p.2 ∈ C) } := by
|
|
|
|
|
ext x
|
|
|
|
|
rw [Set.mem_setOf_eq]
|
|
|
|
|
conv => lhs; rw [and_or_left]
|
|
|
|
|
_ = { p | p ∈ Set.prod A B ∨ (p ∈ Set.prod A C) } := rfl
|
|
|
|
|
_ = (Set.prod A B) ∪ (Set.prod A C) := rfl
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.2b
|
2023-06-10 03:03:06 +00:00
|
|
|
|
|
|
|
|
|
Show that if `A × B = A × C` and `A ≠ ∅`, then `B = C`.
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_2b {A : Set α} {B C : Set β}
|
2023-06-10 03:03:06 +00:00
|
|
|
|
(h : Set.prod A B = Set.prod A C) (hA : Set.Nonempty A)
|
|
|
|
|
: B = C := by
|
|
|
|
|
by_cases hB : Set.Nonempty B
|
2023-06-26 21:11:19 +00:00
|
|
|
|
· rw [Set.Subset.antisymm_iff]
|
2023-06-10 03:03:06 +00:00
|
|
|
|
have ⟨a, ha⟩ := hA
|
|
|
|
|
apply And.intro
|
|
|
|
|
· show ∀ t, t ∈ B → t ∈ C
|
|
|
|
|
intro t ht
|
|
|
|
|
have : (a, t) ∈ Set.prod A B := ⟨ha, ht⟩
|
|
|
|
|
rw [h] at this
|
|
|
|
|
exact this.right
|
|
|
|
|
· show ∀ t, t ∈ C → t ∈ B
|
|
|
|
|
intro t ht
|
|
|
|
|
have : (a, t) ∈ Set.prod A C := ⟨ha, ht⟩
|
|
|
|
|
rw [← h] at this
|
|
|
|
|
exact this.right
|
|
|
|
|
· have nB : B = ∅ := Set.not_nonempty_iff_eq_empty.mp hB
|
|
|
|
|
rw [nB, Set.prod_right_emptyset_eq_emptyset, Set.ext_iff] at h
|
|
|
|
|
rw [nB]
|
|
|
|
|
by_contra nC
|
|
|
|
|
have ⟨a, ha⟩ := hA
|
|
|
|
|
have ⟨c, hc⟩ := Set.nonempty_iff_ne_empty.mpr (Ne.symm nC)
|
|
|
|
|
exact (h (a, c)).mpr ⟨ha, hc⟩
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.3
|
2023-06-10 11:51:42 +00:00
|
|
|
|
|
|
|
|
|
Show that `A × ⋃ 𝓑 = ⋃ {A × X | X ∈ 𝓑}`.
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_3 {A : Set (Set α)} {𝓑 : Set (Set β)}
|
2023-06-10 11:51:42 +00:00
|
|
|
|
: Set.prod A (⋃₀ 𝓑) = ⋃₀ {Set.prod A X | X ∈ 𝓑} := by
|
|
|
|
|
calc Set.prod A (⋃₀ 𝓑)
|
|
|
|
|
_ = { p | p.1 ∈ A ∧ p.2 ∈ ⋃₀ 𝓑} := rfl
|
|
|
|
|
_ = { p | p.1 ∈ A ∧ ∃ b ∈ 𝓑, p.2 ∈ b } := rfl
|
|
|
|
|
_ = { p | ∃ b ∈ 𝓑, p.1 ∈ A ∧ p.2 ∈ b } := by
|
|
|
|
|
ext x
|
|
|
|
|
rw [Set.mem_setOf_eq]
|
|
|
|
|
apply Iff.intro
|
2023-06-23 21:47:55 +00:00
|
|
|
|
· intro ⟨h₁, b, h₂⟩
|
|
|
|
|
exact ⟨b, h₂.left, h₁, h₂.right⟩
|
|
|
|
|
· intro ⟨b, h₁, h₂, h₃⟩
|
|
|
|
|
exact ⟨h₂, b, h₁, h₃⟩
|
2023-06-10 11:51:42 +00:00
|
|
|
|
_ = ⋃₀ { Set.prod A p | p ∈ 𝓑 } := by
|
|
|
|
|
ext x
|
|
|
|
|
rw [Set.mem_setOf_eq]
|
|
|
|
|
unfold Set.sUnion sSup Set.instSupSetSet
|
|
|
|
|
simp only [Set.mem_setOf_eq, exists_exists_and_eq_and]
|
|
|
|
|
apply Iff.intro
|
2023-06-23 21:47:55 +00:00
|
|
|
|
· intro ⟨b, h₁, h₂, h₃⟩
|
|
|
|
|
exact ⟨b, h₁, h₂, h₃⟩
|
|
|
|
|
· intro ⟨b, h₁, h₂, h₃⟩
|
|
|
|
|
exact ⟨b, h₁, h₂, h₃⟩
|
2023-06-10 11:51:42 +00:00
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.5a
|
2023-06-10 22:01:23 +00:00
|
|
|
|
|
|
|
|
|
Assume that `A` and `B` are given sets, and show that there exists a set `C`
|
|
|
|
|
such that for any `y`,
|
|
|
|
|
```
|
|
|
|
|
y ∈ C ↔ y = {x} × B for some x in A.
|
|
|
|
|
```
|
|
|
|
|
In other words, show that `{{x} × B | x ∈ A}` is a set.
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_5a {A : Set α} {B : Set β}
|
2023-06-10 22:01:23 +00:00
|
|
|
|
: ∃ C : Set (Set (α × β)),
|
|
|
|
|
y ∈ C ↔ ∃ x ∈ A, y = Set.prod {x} B := by
|
2023-06-15 21:31:58 +00:00
|
|
|
|
let C := {y ∈ 𝒫 (Set.prod A B) | ∃ a ∈ A, ∀ x, (x ∈ y ↔ ∃ b ∈ B, x = (a, b))}
|
|
|
|
|
refine ⟨C, ?_⟩
|
|
|
|
|
apply Iff.intro
|
|
|
|
|
· intro hC
|
|
|
|
|
simp only [Set.mem_setOf_eq] at hC
|
|
|
|
|
have ⟨_, ⟨a, ⟨ha, h⟩⟩⟩ := hC
|
|
|
|
|
refine ⟨a, ⟨ha, ?_⟩⟩
|
|
|
|
|
ext x
|
|
|
|
|
apply Iff.intro
|
|
|
|
|
· intro hxy
|
|
|
|
|
unfold Set.prod
|
|
|
|
|
simp only [Set.mem_singleton_iff, Set.mem_setOf_eq]
|
|
|
|
|
have ⟨b, ⟨hb, hx⟩⟩ := (h x).mp hxy
|
|
|
|
|
rw [Prod.ext_iff] at hx
|
|
|
|
|
simp only at hx
|
|
|
|
|
rw [← hx.right] at hb
|
|
|
|
|
exact ⟨hx.left, hb⟩
|
|
|
|
|
· intro hx
|
|
|
|
|
simp only [Set.mem_singleton_iff, Set.mem_setOf_eq] at hx
|
|
|
|
|
have := (h (a, x.snd)).mpr ⟨x.snd, ⟨hx.right, rfl⟩⟩
|
|
|
|
|
have hxab : x = (a, x.snd) := by
|
|
|
|
|
ext <;> simp
|
|
|
|
|
exact hx.left
|
|
|
|
|
rwa [← hxab] at this
|
|
|
|
|
· intro ⟨x, ⟨hx, hy⟩⟩
|
|
|
|
|
show y ∈ 𝒫 Set.prod A B ∧ ∃ a, a ∈ A ∧
|
|
|
|
|
∀ (x : α × β), x ∈ y ↔ ∃ b, b ∈ B ∧ x = (a, b)
|
|
|
|
|
apply And.intro
|
|
|
|
|
· simp only [Set.mem_powerset_iff]
|
|
|
|
|
rw [hy]
|
|
|
|
|
unfold Set.prod
|
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_singleton_iff,
|
|
|
|
|
Set.setOf_subset_setOf,
|
|
|
|
|
and_imp,
|
|
|
|
|
Prod.forall
|
|
|
|
|
]
|
|
|
|
|
intro a b ha hb
|
|
|
|
|
exact ⟨by rw [ha]; exact hx, hb⟩
|
|
|
|
|
· refine ⟨x, ⟨hx, ?_⟩⟩
|
|
|
|
|
intro p
|
|
|
|
|
apply Iff.intro
|
|
|
|
|
· intro hab
|
|
|
|
|
rw [hy] at hab
|
|
|
|
|
unfold Set.prod at hab
|
|
|
|
|
simp only [Set.mem_singleton_iff, Set.mem_setOf_eq] at hab
|
|
|
|
|
exact ⟨p.2, ⟨hab.right, by ext; exact hab.left; simp⟩⟩
|
|
|
|
|
· intro ⟨b, ⟨hb, hab⟩⟩
|
|
|
|
|
rw [hy]
|
|
|
|
|
unfold Set.prod
|
|
|
|
|
simp only [Set.mem_singleton_iff, Set.mem_setOf_eq]
|
|
|
|
|
rw [Prod.ext_iff] at hab
|
|
|
|
|
simp only at hab
|
|
|
|
|
rw [hab.right]
|
|
|
|
|
exact ⟨hab.left, hb⟩
|
2023-06-10 22:01:23 +00:00
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.5b
|
2023-06-10 22:01:23 +00:00
|
|
|
|
|
|
|
|
|
With `A`, `B`, and `C` as above, show that `A × B = ∪ C`.
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_5b {A : Set α} (B : Set β)
|
2023-06-10 22:01:23 +00:00
|
|
|
|
: Set.prod A B = ⋃₀ {Set.prod ({x} : Set α) B | x ∈ A} := by
|
2023-06-26 21:11:19 +00:00
|
|
|
|
rw [Set.Subset.antisymm_iff]
|
2023-06-10 22:01:23 +00:00
|
|
|
|
apply And.intro
|
|
|
|
|
· show ∀ t, t ∈ Set.prod A B → t ∈ ⋃₀ {Set.prod {x} B | x ∈ A}
|
|
|
|
|
intro t h
|
|
|
|
|
simp only [Set.mem_setOf_eq] at h
|
|
|
|
|
unfold Set.sUnion sSup Set.instSupSetSet
|
|
|
|
|
simp only [Set.mem_setOf_eq, exists_exists_and_eq_and]
|
|
|
|
|
unfold Set.prod at h
|
|
|
|
|
simp only [Set.mem_setOf_eq] at h
|
|
|
|
|
refine ⟨t.fst, ⟨h.left, ?_⟩⟩
|
|
|
|
|
unfold Set.prod
|
|
|
|
|
simp only [Set.mem_singleton_iff, Set.mem_setOf_eq, true_and]
|
|
|
|
|
exact h.right
|
|
|
|
|
· show ∀ t, t ∈ ⋃₀ {Set.prod {x} B | x ∈ A} → t ∈ Set.prod A B
|
|
|
|
|
unfold Set.prod
|
|
|
|
|
intro t ht
|
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_singleton_iff,
|
|
|
|
|
Set.mem_sUnion,
|
|
|
|
|
Set.mem_setOf_eq,
|
|
|
|
|
exists_exists_and_eq_and
|
|
|
|
|
] at ht
|
|
|
|
|
have ⟨a, ⟨h, ⟨ha, hb⟩⟩⟩ := ht
|
|
|
|
|
simp only [Set.mem_setOf_eq]
|
|
|
|
|
rw [← ha] at h
|
|
|
|
|
exact ⟨h, hb⟩
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Theorem 3D
|
2023-06-15 21:31:58 +00:00
|
|
|
|
|
|
|
|
|
If `⟨x, y⟩ ∈ A`, then `x` and `y` belong to `⋃ ⋃ A`.
|
|
|
|
|
-/
|
2023-06-20 21:02:09 +00:00
|
|
|
|
theorem theorem_3d {A : Set (Set (Set α))} (h : OrderedPair x y ∈ A)
|
|
|
|
|
: x ∈ ⋃₀ (⋃₀ A) ∧ y ∈ ⋃₀ (⋃₀ A) := by
|
2023-06-29 20:53:36 +00:00
|
|
|
|
have hp := Chapter_2.exercise_2_3 (OrderedPair x y) h
|
2023-06-20 21:02:09 +00:00
|
|
|
|
unfold OrderedPair at hp
|
|
|
|
|
have hq : {x, y} ∈ ⋃₀ A := hp (by simp)
|
2023-06-29 20:53:36 +00:00
|
|
|
|
have : {x, y} ⊆ ⋃₀ ⋃₀ A := Chapter_2.exercise_2_3 {x, y} hq
|
2023-06-20 21:02:09 +00:00
|
|
|
|
exact ⟨this (by simp), this (by simp)⟩
|
2023-06-15 21:31:58 +00:00
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.6
|
2023-06-16 14:16:33 +00:00
|
|
|
|
|
|
|
|
|
Show that a set `A` is a relation **iff** `A ⊆ dom A × ran A`.
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_6 {A : Set.Relation α}
|
2023-06-20 21:02:09 +00:00
|
|
|
|
: A ⊆ Set.prod (A.dom) (A.ran) := by
|
2023-06-16 14:16:33 +00:00
|
|
|
|
show ∀ t, t ∈ A → t ∈ Set.prod (Prod.fst '' A) (Prod.snd '' A)
|
|
|
|
|
intro (a, b) ht
|
|
|
|
|
unfold Set.prod
|
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_image,
|
|
|
|
|
Prod.exists,
|
|
|
|
|
exists_and_right,
|
|
|
|
|
exists_eq_right,
|
|
|
|
|
Set.mem_setOf_eq
|
|
|
|
|
]
|
|
|
|
|
exact ⟨⟨b, ht⟩, ⟨a, ht⟩⟩
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.7
|
2023-06-20 21:02:09 +00:00
|
|
|
|
|
|
|
|
|
Show that if `R` is a relation, then `fld R = ⋃ ⋃ R`.
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_7 {R : Set.Relation α}
|
2023-06-20 21:02:09 +00:00
|
|
|
|
: R.fld = ⋃₀ ⋃₀ R.toOrderedPairs := by
|
|
|
|
|
let img := R.toOrderedPairs
|
2023-06-26 21:11:19 +00:00
|
|
|
|
rw [Set.Subset.antisymm_iff]
|
2023-06-20 21:02:09 +00:00
|
|
|
|
apply And.intro
|
|
|
|
|
· show ∀ x, x ∈ R.fld → x ∈ ⋃₀ ⋃₀ img
|
|
|
|
|
intro x hx
|
|
|
|
|
apply Or.elim hx
|
|
|
|
|
· intro hd
|
|
|
|
|
unfold Set.Relation.dom Prod.fst at hd
|
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_image, Prod.exists, exists_and_right, exists_eq_right
|
|
|
|
|
] at hd
|
|
|
|
|
have ⟨y, hp⟩ := hd
|
2023-06-23 21:47:55 +00:00
|
|
|
|
have hm : OrderedPair x y ∈ Set.image (fun p => OrderedPair p.1 p.2) R := by
|
2023-06-20 21:02:09 +00:00
|
|
|
|
unfold Set.image
|
|
|
|
|
simp only [Prod.exists, Set.mem_setOf_eq]
|
|
|
|
|
exact ⟨x, ⟨y, ⟨hp, rfl⟩⟩⟩
|
|
|
|
|
unfold OrderedPair at hm
|
2023-06-29 20:53:36 +00:00
|
|
|
|
have : {x} ∈ ⋃₀ img := Chapter_2.exercise_2_3 {{x}, {x, y}} hm (by simp)
|
|
|
|
|
exact (Chapter_2.exercise_2_3 {x} this) (show x ∈ {x} by rfl)
|
2023-06-20 21:02:09 +00:00
|
|
|
|
· intro hr
|
|
|
|
|
unfold Set.Relation.ran Prod.snd at hr
|
|
|
|
|
simp only [Set.mem_image, Prod.exists, exists_eq_right] at hr
|
|
|
|
|
have ⟨t, ht⟩ := hr
|
2023-06-23 21:47:55 +00:00
|
|
|
|
have hm : OrderedPair t x ∈ Set.image (fun p => OrderedPair p.1 p.2) R := by
|
2023-06-20 21:02:09 +00:00
|
|
|
|
simp only [Set.mem_image, Prod.exists]
|
|
|
|
|
exact ⟨t, ⟨x, ⟨ht, rfl⟩⟩⟩
|
|
|
|
|
unfold OrderedPair at hm
|
2023-06-29 20:53:36 +00:00
|
|
|
|
have : {t, x} ∈ ⋃₀ img := Chapter_2.exercise_2_3 {{t}, {t, x}} hm
|
2023-06-20 21:02:09 +00:00
|
|
|
|
(show {t, x} ∈ {{t}, {t, x}} by simp)
|
2023-06-29 20:53:36 +00:00
|
|
|
|
exact Chapter_2.exercise_2_3 {t, x} this (show x ∈ {t, x} by simp)
|
2023-06-20 21:02:09 +00:00
|
|
|
|
|
|
|
|
|
· show ∀ t, t ∈ ⋃₀ ⋃₀ img → t ∈ Set.Relation.fld R
|
|
|
|
|
intro t ht
|
|
|
|
|
have ⟨T, hT⟩ : ∃ T ∈ ⋃₀ img, t ∈ T := ht
|
|
|
|
|
have ⟨T', hT'⟩ : ∃ T' ∈ img, T ∈ T' := hT.left
|
2023-06-26 19:11:55 +00:00
|
|
|
|
dsimp only at hT'
|
2023-06-20 21:02:09 +00:00
|
|
|
|
unfold Set.Relation.toOrderedPairs at hT'
|
|
|
|
|
simp only [Set.mem_image, Prod.exists] at hT'
|
|
|
|
|
have ⟨x, ⟨y, ⟨p, hp⟩⟩⟩ := hT'.left
|
|
|
|
|
have hr := hT'.right
|
|
|
|
|
rw [← hp] at hr
|
|
|
|
|
unfold OrderedPair at hr
|
|
|
|
|
simp only [Set.mem_singleton_iff, Set.mem_insert_iff] at hr
|
|
|
|
|
|
|
|
|
|
-- Use `exercise_6_6` to prove that if `t = x` then `t ∈ dom R` and if
|
|
|
|
|
-- `t = y` then `t ∈ ran R`.
|
|
|
|
|
have hxy_mem : t = x ∨ t = y → t ∈ Set.Relation.fld R := by
|
|
|
|
|
intro ht
|
2023-06-29 20:53:36 +00:00
|
|
|
|
have hz : R ⊆ Set.prod (R.dom) (R.ran) := exercise_3_6
|
2023-06-20 21:02:09 +00:00
|
|
|
|
have : (x, y) ∈ Set.prod (R.dom) (R.ran) := hz p
|
|
|
|
|
unfold Set.prod at this
|
|
|
|
|
simp at this
|
|
|
|
|
apply Or.elim ht
|
|
|
|
|
· intro ht'
|
|
|
|
|
rw [← ht'] at this
|
|
|
|
|
exact Or.inl this.left
|
|
|
|
|
· intro ht'
|
|
|
|
|
rw [← ht'] at this
|
|
|
|
|
exact Or.inr this.right
|
|
|
|
|
|
|
|
|
|
-- Eliminate `T = {x} ∨ T = {x, y}`.
|
|
|
|
|
apply Or.elim hr
|
|
|
|
|
· intro hx
|
|
|
|
|
have := hT.right
|
|
|
|
|
rw [hx] at this
|
|
|
|
|
simp only [Set.mem_singleton_iff] at this
|
|
|
|
|
exact hxy_mem (Or.inl this)
|
|
|
|
|
· intro hxy
|
|
|
|
|
have := hT.right
|
|
|
|
|
rw [hxy] at this
|
|
|
|
|
simp only [Set.mem_singleton_iff, Set.mem_insert_iff] at this
|
|
|
|
|
exact hxy_mem this
|
|
|
|
|
|
2023-07-05 18:45:51 +00:00
|
|
|
|
section Relation
|
2023-06-26 19:11:55 +00:00
|
|
|
|
|
|
|
|
|
open Set.Relation
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.8 (i)
|
2023-06-22 20:34:50 +00:00
|
|
|
|
|
|
|
|
|
Show that for any set `𝓐`:
|
|
|
|
|
```
|
|
|
|
|
dom ⋃ A = ⋃ { dom R | R ∈ 𝓐 }
|
|
|
|
|
```
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_8_i {A : Set (Set.Relation α)}
|
2023-06-26 19:11:55 +00:00
|
|
|
|
: dom (⋃₀ A) = ⋃₀ { dom R | R ∈ A } := by
|
2023-06-22 20:34:50 +00:00
|
|
|
|
ext x
|
2023-06-26 19:11:55 +00:00
|
|
|
|
unfold dom Prod.fst
|
2023-06-22 20:34:50 +00:00
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_image,
|
|
|
|
|
Set.mem_sUnion,
|
|
|
|
|
Prod.exists,
|
|
|
|
|
exists_and_right,
|
|
|
|
|
exists_eq_right,
|
|
|
|
|
Set.mem_setOf_eq,
|
|
|
|
|
exists_exists_and_eq_and
|
|
|
|
|
]
|
|
|
|
|
apply Iff.intro
|
2023-06-23 21:47:55 +00:00
|
|
|
|
· intro ⟨y, t, ht, hx⟩
|
|
|
|
|
exact ⟨t, ht, y, hx⟩
|
|
|
|
|
· intro ⟨t, ht, y, hx⟩
|
|
|
|
|
exact ⟨y, t, ht, hx⟩
|
2023-06-22 20:34:50 +00:00
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.8 (ii)
|
2023-06-22 20:34:50 +00:00
|
|
|
|
|
|
|
|
|
Show that for any set `𝓐`:
|
|
|
|
|
```
|
|
|
|
|
ran ⋃ A = ⋃ { ran R | R ∈ 𝓐 }
|
|
|
|
|
```
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_8_ii {A : Set (Set.Relation α)}
|
2023-06-26 19:11:55 +00:00
|
|
|
|
: ran (⋃₀ A) = ⋃₀ { ran R | R ∈ A } := by
|
2023-06-22 20:34:50 +00:00
|
|
|
|
ext x
|
2023-06-26 19:11:55 +00:00
|
|
|
|
unfold ran Prod.snd
|
2023-06-22 20:34:50 +00:00
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_image,
|
|
|
|
|
Set.mem_sUnion,
|
|
|
|
|
Prod.exists,
|
|
|
|
|
exists_eq_right,
|
|
|
|
|
Set.mem_setOf_eq,
|
|
|
|
|
exists_exists_and_eq_and
|
|
|
|
|
]
|
|
|
|
|
apply Iff.intro
|
|
|
|
|
· intro ⟨t, ⟨y, ⟨hy, ht⟩⟩⟩
|
|
|
|
|
exact ⟨y, ⟨hy, ⟨t, ht⟩⟩⟩
|
|
|
|
|
· intro ⟨y, ⟨hy, ⟨t, ht⟩⟩⟩
|
|
|
|
|
exact ⟨t, ⟨y, ⟨hy, ht⟩⟩⟩
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.9 (i)
|
2023-06-22 20:34:50 +00:00
|
|
|
|
|
|
|
|
|
Discuss the result of replacing the union operation by the intersection
|
|
|
|
|
operation in the preceding problem.
|
|
|
|
|
```
|
|
|
|
|
dom ⋃ A = ⋃ { dom R | R ∈ 𝓐 }
|
|
|
|
|
```
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_9_i {A : Set (Set.Relation α)}
|
2023-06-26 19:11:55 +00:00
|
|
|
|
: dom (⋂₀ A) ⊆ ⋂₀ { dom R | R ∈ A } := by
|
|
|
|
|
show ∀ x, x ∈ dom (⋂₀ A) → x ∈ ⋂₀ { dom R | R ∈ A }
|
|
|
|
|
unfold dom Prod.fst
|
2023-06-22 20:34:50 +00:00
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_image,
|
|
|
|
|
Set.mem_sInter,
|
|
|
|
|
Prod.exists,
|
|
|
|
|
exists_and_right,
|
|
|
|
|
exists_eq_right,
|
|
|
|
|
Set.mem_setOf_eq,
|
|
|
|
|
forall_exists_index,
|
|
|
|
|
and_imp,
|
|
|
|
|
forall_apply_eq_imp_iff₂
|
|
|
|
|
]
|
|
|
|
|
intro _ y hy R hR
|
|
|
|
|
exact ⟨y, hy R hR⟩
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Exercise 3.9 (ii)
|
2023-06-22 20:34:50 +00:00
|
|
|
|
|
|
|
|
|
Discuss the result of replacing the union operation by the intersection
|
|
|
|
|
operation in the preceding problem.
|
|
|
|
|
```
|
|
|
|
|
ran ⋃ A = ⋃ { ran R | R ∈ 𝓐 }
|
|
|
|
|
```
|
|
|
|
|
-/
|
2023-06-29 20:53:36 +00:00
|
|
|
|
theorem exercise_3_9_ii {A : Set (Set.Relation α)}
|
2023-06-26 19:11:55 +00:00
|
|
|
|
: ran (⋂₀ A) ⊆ ⋂₀ { ran R | R ∈ A } := by
|
|
|
|
|
show ∀ x, x ∈ ran (⋂₀ A) → x ∈ ⋂₀ { ran R | R ∈ A }
|
|
|
|
|
unfold ran Prod.snd
|
2023-06-22 20:34:50 +00:00
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_image,
|
|
|
|
|
Set.mem_sInter,
|
|
|
|
|
Prod.exists,
|
|
|
|
|
exists_and_right,
|
|
|
|
|
exists_eq_right,
|
|
|
|
|
Set.mem_setOf_eq,
|
|
|
|
|
forall_exists_index,
|
|
|
|
|
and_imp,
|
|
|
|
|
forall_apply_eq_imp_iff₂
|
|
|
|
|
]
|
|
|
|
|
intro _ y hy R hR
|
|
|
|
|
exact ⟨y, hy R hR⟩
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Theorem 3G (i)
|
2023-06-23 21:47:55 +00:00
|
|
|
|
|
2023-06-25 13:27:35 +00:00
|
|
|
|
Assume that `F` is a one-to-one function. If `x ∈ dom F`, then `F⁻¹(F(x)) = x`.
|
2023-06-23 21:47:55 +00:00
|
|
|
|
-/
|
2023-06-26 21:11:19 +00:00
|
|
|
|
theorem theorem_3g_i {F : Set.Relation α}
|
|
|
|
|
(hF : F.isOneToOne) (hx : x ∈ dom F)
|
2023-06-25 13:27:35 +00:00
|
|
|
|
: ∃! y, (x, y) ∈ F ∧ (y, x) ∈ F.inv := by
|
2023-06-26 19:11:55 +00:00
|
|
|
|
simp only [mem_self_comm_mem_inv, and_self]
|
|
|
|
|
have ⟨y, hy⟩ := dom_exists hx
|
2023-06-26 13:08:25 +00:00
|
|
|
|
refine ⟨y, hy, ?_⟩
|
|
|
|
|
intro y₁ hy₁
|
2023-06-26 19:11:55 +00:00
|
|
|
|
unfold isOneToOne at hF
|
|
|
|
|
exact (single_valued_eq_unique hF.left hy hy₁).symm
|
2023-06-23 21:47:55 +00:00
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Theorem 3G (ii)
|
2023-06-23 21:47:55 +00:00
|
|
|
|
|
2023-06-25 13:27:35 +00:00
|
|
|
|
Assume that `F` is a one-to-one function. If `y ∈ ran F`, then `F(F⁻¹(y)) = y`.
|
2023-06-23 21:47:55 +00:00
|
|
|
|
-/
|
2023-06-25 13:27:35 +00:00
|
|
|
|
theorem theorem_3g_ii {F : Set.Relation α}
|
2023-06-26 21:11:19 +00:00
|
|
|
|
(hF : F.isOneToOne) (hy : y ∈ F.ran)
|
2023-06-25 13:27:35 +00:00
|
|
|
|
: ∃! x, (x, y) ∈ F ∧ (y, x) ∈ F.inv := by
|
2023-06-26 19:11:55 +00:00
|
|
|
|
simp only [mem_self_comm_mem_inv, and_self]
|
|
|
|
|
have ⟨x, hx⟩ := ran_exists hy
|
2023-06-26 13:08:25 +00:00
|
|
|
|
refine ⟨x, hx, ?_⟩
|
|
|
|
|
intro x₁ hx₁
|
2023-06-26 19:11:55 +00:00
|
|
|
|
unfold isOneToOne at hF
|
|
|
|
|
exact (single_rooted_eq_unique hF.right hx hx₁).symm
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Theorem 3H
|
2023-06-26 19:11:55 +00:00
|
|
|
|
|
|
|
|
|
Assume that `F` and `G` are functions. Then
|
|
|
|
|
```
|
|
|
|
|
dom (F ∘ G) = {x ∈ dom G | G(x) ∈ dom F}.
|
|
|
|
|
```
|
|
|
|
|
-/
|
|
|
|
|
theorem theorem_3h_dom {F G : Set.Relation α}
|
2023-06-26 21:11:19 +00:00
|
|
|
|
(_ : F.isSingleValued) (hG : G.isSingleValued)
|
2023-07-05 22:04:43 +00:00
|
|
|
|
: dom (F.comp G) = {x ∈ dom G | ∃! y, (x, y) ∈ G ∧ y ∈ dom F} := by
|
2023-06-26 19:11:55 +00:00
|
|
|
|
let rhs := {x ∈ dom G | ∃! y, (x, y) ∈ G ∧ y ∈ dom F }
|
2023-06-26 21:11:19 +00:00
|
|
|
|
rw [Set.Subset.antisymm_iff]
|
2023-06-26 19:11:55 +00:00
|
|
|
|
apply And.intro
|
2023-06-26 21:11:19 +00:00
|
|
|
|
· show ∀ t, t ∈ dom (F.comp G) → t ∈ rhs
|
2023-06-26 19:11:55 +00:00
|
|
|
|
intro t ht
|
|
|
|
|
simp only [Set.mem_setOf_eq]
|
|
|
|
|
have ⟨z, hz⟩ := dom_exists ht
|
|
|
|
|
refine ⟨dom_comp_imp_dom_self ht, ?_⟩
|
|
|
|
|
simp only [Set.mem_setOf_eq] at hz
|
|
|
|
|
have ⟨a, ha⟩ := hz
|
|
|
|
|
unfold dom
|
|
|
|
|
simp only [Set.mem_image, Prod.exists, exists_and_right, exists_eq_right]
|
|
|
|
|
unfold ExistsUnique
|
|
|
|
|
simp only [and_imp, forall_exists_index]
|
|
|
|
|
refine ⟨a, ⟨ha.left, z, ha.right⟩, ?_⟩
|
|
|
|
|
intro y₁ hy₁
|
|
|
|
|
exact fun _ _ => single_valued_eq_unique hG hy₁ ha.left
|
2023-06-26 21:11:19 +00:00
|
|
|
|
· show ∀ t, t ∈ rhs → t ∈ dom (F.comp G)
|
2023-06-26 19:11:55 +00:00
|
|
|
|
intro t ht
|
|
|
|
|
simp only [Set.mem_setOf_eq] at ht
|
|
|
|
|
unfold dom
|
|
|
|
|
simp only [Set.mem_image, Prod.exists, exists_and_right, exists_eq_right]
|
|
|
|
|
have ⟨a, ha⟩ := ht.right
|
|
|
|
|
simp at ha
|
|
|
|
|
have ⟨b, hb⟩ := dom_exists ha.left.right
|
|
|
|
|
refine ⟨b, ?_⟩
|
|
|
|
|
unfold comp
|
|
|
|
|
simp only [Set.mem_setOf_eq]
|
|
|
|
|
exact ⟨a, ha.left.left, hb⟩
|
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Theorem 3J (a)
|
2023-06-26 21:11:19 +00:00
|
|
|
|
|
|
|
|
|
Assume that `F : A → B`, and that `A` is nonempty. There exists a function
|
|
|
|
|
`G : B → A` (a "left inverse") such that `G ∘ F` is the identity function on `A`
|
|
|
|
|
**iff** `F` is one-to-one.
|
|
|
|
|
-/
|
|
|
|
|
theorem theorem_3j_a {F : Set.Relation α} {A B : Set α}
|
2023-06-30 14:05:12 +00:00
|
|
|
|
(hF : F.isSingleValued ∧ F.mapsInto A B) (hA : Set.Nonempty A)
|
2023-06-26 21:11:19 +00:00
|
|
|
|
: (∃ G : Set.Relation α,
|
2023-06-30 14:05:12 +00:00
|
|
|
|
G.isSingleValued ∧ G.mapsInto B A ∧
|
|
|
|
|
(∀ p ∈ G.comp F, p.1 = p.2)) ↔ F.isOneToOne := by
|
|
|
|
|
apply Iff.intro
|
|
|
|
|
· intro ⟨G, ⟨hG₁, hG₂, hI⟩⟩
|
|
|
|
|
refine ⟨hF.left, ?_⟩
|
|
|
|
|
show F.isSingleRooted
|
|
|
|
|
intro y hy
|
|
|
|
|
have ⟨x, hx⟩ := ran_exists hy
|
|
|
|
|
sorry
|
2023-07-02 18:26:09 +00:00
|
|
|
|
· intro h
|
|
|
|
|
sorry
|
2023-06-26 21:11:19 +00:00
|
|
|
|
|
2023-06-29 23:02:20 +00:00
|
|
|
|
/-- #### Theorem 3J (b)
|
2023-06-26 21:11:19 +00:00
|
|
|
|
|
|
|
|
|
Assume that `F : A → B`, and that `A` is nonempty. There exists a function
|
|
|
|
|
`H : B → A` (a "right inverse") such that `F ∘ H` is the identity function on
|
|
|
|
|
`B` **iff** `F` maps `A` onto `B`.
|
|
|
|
|
-/
|
|
|
|
|
theorem theorem_3j_b {F : Set.Relation α} {A B : Set α}
|
2023-06-30 14:05:12 +00:00
|
|
|
|
(hF : F.isSingleValued ∧ F.mapsInto A B) (hA : Set.Nonempty A)
|
2023-06-26 21:11:19 +00:00
|
|
|
|
: (∃ H : Set.Relation α,
|
2023-06-30 14:05:12 +00:00
|
|
|
|
H.isSingleValued ∧ H.mapsInto B A ∧
|
|
|
|
|
(∀ p ∈ F.comp H, p.1 = p.2)) ↔ F.mapsOnto A B := by
|
2023-06-26 21:11:19 +00:00
|
|
|
|
sorry
|
|
|
|
|
|
2023-07-04 19:13:57 +00:00
|
|
|
|
/-- #### Theorem 3K (a)
|
|
|
|
|
|
|
|
|
|
The following hold for any sets. (`F` need not be a function.)
|
|
|
|
|
The image of a union is the union of the images:
|
|
|
|
|
```
|
|
|
|
|
F⟦⋃ 𝓐⟧ = ⋃ {F⟦A⟧ | A ∈ 𝓐}
|
|
|
|
|
```
|
|
|
|
|
-/
|
|
|
|
|
theorem theorem_3k_a {F : Set.Relation α} {𝓐 : Set (Set α)}
|
|
|
|
|
: F.image (⋃₀ 𝓐) = ⋃₀ { F.image A | A ∈ 𝓐 } := by
|
|
|
|
|
rw [Set.Subset.antisymm_iff]
|
|
|
|
|
apply And.intro
|
|
|
|
|
· show ∀ v, v ∈ F.image (⋃₀ 𝓐) → v ∈ ⋃₀ { F.image A | A ∈ 𝓐 }
|
|
|
|
|
intro v hv
|
|
|
|
|
unfold image at hv
|
|
|
|
|
simp only [Set.mem_sUnion, Set.mem_setOf_eq] at hv
|
|
|
|
|
have ⟨u, hu⟩ := hv
|
|
|
|
|
have ⟨A, hA⟩ := hu.left
|
|
|
|
|
simp only [Set.mem_sUnion, Set.mem_setOf_eq, exists_exists_and_eq_and]
|
|
|
|
|
refine ⟨A, hA.left, ?_⟩
|
|
|
|
|
show v ∈ F.image A
|
|
|
|
|
unfold image
|
|
|
|
|
simp only [Set.mem_setOf_eq]
|
|
|
|
|
exact ⟨u, hA.right, hu.right⟩
|
|
|
|
|
· show ∀ v, v ∈ ⋃₀ {x | ∃ A, A ∈ 𝓐 ∧ F.image A = x} → v ∈ F.image (⋃₀ 𝓐)
|
|
|
|
|
intro v hv
|
|
|
|
|
simp only [Set.mem_sUnion, Set.mem_setOf_eq, exists_exists_and_eq_and] at hv
|
|
|
|
|
have ⟨A, hA⟩ := hv
|
|
|
|
|
unfold image at hA
|
|
|
|
|
simp only [Set.mem_setOf_eq] at hA
|
|
|
|
|
have ⟨u, hu⟩ := hA.right
|
|
|
|
|
unfold image
|
|
|
|
|
simp only [Set.mem_sUnion, Set.mem_setOf_eq]
|
|
|
|
|
exact ⟨u, ⟨A, hA.left, hu.left⟩, hu.right⟩
|
|
|
|
|
|
|
|
|
|
/-! #### Theorem 3K (b)
|
|
|
|
|
|
|
|
|
|
The following hold for any sets. (`F` need not be a function.)
|
|
|
|
|
The image of an intersection is included in the intersection of the images:
|
|
|
|
|
```
|
|
|
|
|
F⟦⋂ 𝓐⟧ ⊆ ⋂ {F⟦A⟧ | A ∈ 𝓐}
|
|
|
|
|
```
|
|
|
|
|
Equality holds if `F` is single-rooted.
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
theorem theorem_3k_b_i {F : Set.Relation α} {𝓐 : Set (Set α)}
|
|
|
|
|
: F.image (⋂₀ 𝓐) ⊆ ⋂₀ { F.image A | A ∈ 𝓐} := by
|
|
|
|
|
show ∀ v, v ∈ F.image (⋂₀ 𝓐) → v ∈ ⋂₀ { F.image A | A ∈ 𝓐}
|
|
|
|
|
intro v hv
|
|
|
|
|
unfold image at hv
|
|
|
|
|
simp only [Set.mem_sInter, Set.mem_setOf_eq] at hv
|
|
|
|
|
have ⟨u, hu⟩ := hv
|
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_sInter,
|
|
|
|
|
Set.mem_setOf_eq,
|
|
|
|
|
forall_exists_index,
|
|
|
|
|
and_imp,
|
|
|
|
|
forall_apply_eq_imp_iff₂
|
|
|
|
|
]
|
|
|
|
|
intro A hA
|
|
|
|
|
unfold image
|
|
|
|
|
simp only [Set.mem_setOf_eq]
|
|
|
|
|
exact ⟨u, hu.left A hA, hu.right⟩
|
|
|
|
|
|
|
|
|
|
theorem theorem_3k_b_ii {F : Set.Relation α} {𝓐 : Set (Set α)}
|
|
|
|
|
(hF : F.isSingleRooted) (h𝓐 : Set.Nonempty 𝓐)
|
|
|
|
|
: F.image (⋂₀ 𝓐) = ⋂₀ { F.image A | A ∈ 𝓐} := by
|
|
|
|
|
rw [Set.Subset.antisymm_iff]
|
|
|
|
|
refine ⟨theorem_3k_b_i, ?_⟩
|
|
|
|
|
show ∀ v, v ∈ ⋂₀ {x | ∃ A, A ∈ 𝓐 ∧ image F A = x} → v ∈ image F (⋂₀ 𝓐)
|
|
|
|
|
intro v hv
|
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_sInter,
|
|
|
|
|
Set.mem_setOf_eq,
|
|
|
|
|
forall_exists_index,
|
|
|
|
|
and_imp,
|
|
|
|
|
forall_apply_eq_imp_iff₂
|
|
|
|
|
] at hv
|
|
|
|
|
unfold image at hv
|
|
|
|
|
simp only [Set.mem_setOf_eq] at hv
|
|
|
|
|
have ⟨u, hu⟩ : ∃ u, (∀ (a : Set α), a ∈ 𝓐 → u ∈ a) ∧ (u, v) ∈ F := by
|
|
|
|
|
have ⟨A, hA⟩ := h𝓐
|
|
|
|
|
have ⟨_, ⟨_, hv'⟩⟩ := hv A hA
|
|
|
|
|
have ⟨u, hu⟩ := hF v (mem_pair_imp_snd_mem_ran hv')
|
|
|
|
|
simp only [and_imp] at hu
|
|
|
|
|
refine ⟨u, ?_, hu.left.right⟩
|
|
|
|
|
intro a ha
|
|
|
|
|
have ⟨u₁, hu₁⟩ := hv a ha
|
|
|
|
|
have := hu.right u₁ (mem_pair_imp_fst_mem_dom hu₁.right) hu₁.right
|
|
|
|
|
rw [← this]
|
|
|
|
|
exact hu₁.left
|
|
|
|
|
unfold image
|
|
|
|
|
simp only [Set.mem_sInter, Set.mem_setOf_eq]
|
|
|
|
|
exact ⟨u, hu⟩
|
|
|
|
|
|
|
|
|
|
/-! #### Theorem 3K (c)
|
|
|
|
|
|
|
|
|
|
The following hold for any sets. (`F` need not be a function.)
|
|
|
|
|
The image of a difference includes the difference of the images:
|
|
|
|
|
```
|
|
|
|
|
F⟦A⟧ - F⟦B⟧ ⊆ F⟦A - B⟧.
|
|
|
|
|
```
|
|
|
|
|
Equality holds if `F` is single-rooted.
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
theorem theorem_3k_c_i {F : Set.Relation α} {A B : Set α}
|
|
|
|
|
: F.image A \ F.image B ⊆ F.image (A \ B) := by
|
|
|
|
|
show ∀ v, v ∈ F.image A \ F.image B → v ∈ F.image (A \ B)
|
|
|
|
|
intro v hv
|
|
|
|
|
have hv' : v ∈ image F A ∧ v ∉ image F B := hv
|
|
|
|
|
conv at hv' => arg 1; unfold image; simp only [Set.mem_setOf_eq, eq_iff_iff]
|
|
|
|
|
have ⟨u, hu⟩ := hv'.left
|
|
|
|
|
have hw : ∀ w ∈ B, (w, v) ∉ F := by
|
|
|
|
|
intro w hw nw
|
|
|
|
|
have nv := hv'.right
|
|
|
|
|
unfold image at nv
|
|
|
|
|
simp only [Set.mem_setOf_eq, not_exists, not_and] at nv
|
|
|
|
|
exact absurd nw (nv w hw)
|
|
|
|
|
have hu' : u ∉ B := by
|
|
|
|
|
by_contra nu
|
|
|
|
|
exact absurd hu.right (hw u nu)
|
|
|
|
|
unfold image
|
|
|
|
|
simp only [Set.mem_diff, Set.mem_setOf_eq]
|
|
|
|
|
exact ⟨u, ⟨hu.left, hu'⟩, hu.right⟩
|
|
|
|
|
|
|
|
|
|
theorem theorem_3k_c_ii {F : Set.Relation α} {A B : Set α}
|
|
|
|
|
(hF : F.isSingleRooted)
|
|
|
|
|
: F.image A \ F.image B = F.image (A \ B) := by
|
|
|
|
|
rw [Set.Subset.antisymm_iff]
|
|
|
|
|
refine ⟨theorem_3k_c_i, ?_⟩
|
|
|
|
|
show ∀ v, v ∈ image F (A \ B) → v ∈ image F A \ image F B
|
|
|
|
|
intro v hv
|
|
|
|
|
unfold image at hv
|
|
|
|
|
simp only [Set.mem_diff, Set.mem_setOf_eq] at hv
|
|
|
|
|
have ⟨u, hu⟩ := hv
|
|
|
|
|
have hv₁ : v ∈ F.image A := by
|
|
|
|
|
unfold image
|
|
|
|
|
simp only [Set.mem_setOf_eq]
|
|
|
|
|
exact ⟨u, hu.left.left, hu.right⟩
|
|
|
|
|
have hv₂ : v ∉ F.image B := by
|
|
|
|
|
intro nv
|
|
|
|
|
unfold image at nv
|
|
|
|
|
simp only [Set.mem_setOf_eq] at nv
|
|
|
|
|
have ⟨u₁, hu₁⟩ := nv
|
2023-07-05 18:45:51 +00:00
|
|
|
|
have := single_rooted_eq_unique hF hu.right hu₁.right
|
|
|
|
|
rw [← this] at hu₁
|
2023-07-04 19:13:57 +00:00
|
|
|
|
exact absurd hu₁.left hu.left.right
|
|
|
|
|
exact ⟨hv₁, hv₂⟩
|
|
|
|
|
|
|
|
|
|
/-! #### Corollary 3L
|
|
|
|
|
|
|
|
|
|
For any function `G` and sets `A`, `B`, and `𝓐`:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
G⁻¹⟦⋃ 𝓐⟧ = ⋃ {G⁻¹⟦A⟧ | A ∈ 𝓐},
|
|
|
|
|
G⁻¹⟦𝓐⟧ = ⋂ {G⁻¹⟦A⟧ | A ∈ 𝓐} for 𝓐 ≠ ∅,
|
|
|
|
|
G⁻¹⟦A - B⟧ = G⁻¹⟦A⟧ - G⁻¹⟦B⟧.
|
|
|
|
|
```
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
theorem corollary_3l_i {G : Set.Relation α} {𝓐 : Set (Set α)}
|
|
|
|
|
: G.inv.image (⋃₀ 𝓐) = ⋃₀ {G.inv.image A | A ∈ 𝓐} := theorem_3k_a
|
|
|
|
|
|
|
|
|
|
theorem corollary_3l_ii {G : Set.Relation α} {𝓐 : Set (Set α)}
|
|
|
|
|
(hG : G.isSingleValued) (h𝓐 : Set.Nonempty 𝓐)
|
|
|
|
|
: G.inv.image (⋂₀ 𝓐) = ⋂₀ {G.inv.image A | A ∈ 𝓐} := by
|
|
|
|
|
have hG' : G.inv.isSingleRooted :=
|
|
|
|
|
single_valued_self_iff_single_rooted_inv.mp hG
|
|
|
|
|
exact theorem_3k_b_ii hG' h𝓐
|
|
|
|
|
|
|
|
|
|
theorem corollary_3l_iii {G : Set.Relation α} {A B : Set α}
|
|
|
|
|
(hG : G.isSingleValued)
|
|
|
|
|
: G.inv.image (A \ B) = G.inv.image A \ G.inv.image B := by
|
|
|
|
|
have hG' : G.inv.isSingleRooted :=
|
|
|
|
|
single_valued_self_iff_single_rooted_inv.mp hG
|
|
|
|
|
exact (theorem_3k_c_ii hG').symm
|
|
|
|
|
|
2023-07-05 18:45:51 +00:00
|
|
|
|
/-- #### Exercise 3.12
|
|
|
|
|
|
|
|
|
|
Assume that `f` and `g` are functions and show that
|
|
|
|
|
```
|
|
|
|
|
f ⊆ g ↔ dom f ⊆ dom g ∧ (∀ x ∈ dom f) f(x) = g(x).
|
|
|
|
|
```
|
|
|
|
|
-/
|
|
|
|
|
theorem exercise_3_12 {f g : Set.Relation α}
|
|
|
|
|
(hf : f.isSingleValued) (_ : g.isSingleValued)
|
2023-07-05 22:04:43 +00:00
|
|
|
|
: f ⊆ g ↔ dom f ⊆ dom g ∧
|
|
|
|
|
(∀ x ∈ dom f, ∃! y : α, (x, y) ∈ f ∧ (x, y) ∈ g) := by
|
2023-07-05 18:45:51 +00:00
|
|
|
|
apply Iff.intro
|
|
|
|
|
· intro h
|
|
|
|
|
apply And.intro
|
|
|
|
|
· show ∀ x, x ∈ dom f → x ∈ dom g
|
|
|
|
|
intro x hx
|
|
|
|
|
have ⟨y, hy⟩ := dom_exists hx
|
|
|
|
|
exact mem_pair_imp_fst_mem_dom (h hy)
|
|
|
|
|
· intro x hx
|
|
|
|
|
have ⟨y, hy⟩ := dom_exists hx
|
|
|
|
|
refine ⟨y, ⟨hy, h hy⟩, ?_⟩
|
|
|
|
|
intro y₁ hy₁
|
|
|
|
|
exact single_valued_eq_unique hf hy₁.left hy
|
|
|
|
|
· intro ⟨_, hx⟩
|
|
|
|
|
show ∀ p, p ∈ f → p ∈ g
|
|
|
|
|
intro (x, y) hp
|
|
|
|
|
have ⟨y₁, hy₁⟩ := hx x (mem_pair_imp_fst_mem_dom hp)
|
|
|
|
|
rw [single_valued_eq_unique hf hp hy₁.left.left]
|
|
|
|
|
exact hy₁.left.right
|
|
|
|
|
|
|
|
|
|
/-- #### Exercise 3.13
|
|
|
|
|
|
|
|
|
|
Assume that `f` and `g` are functions with `f ⊆ g` and `dom g ⊆ dom f`. Show
|
|
|
|
|
that `f = g`.
|
|
|
|
|
-/
|
|
|
|
|
theorem exercise_3_13 {f g : Set.Relation α}
|
|
|
|
|
(hf : f.isSingleValued) (hg : g.isSingleValued)
|
|
|
|
|
(h : f ⊆ g) (h₁ : dom g ⊆ dom f)
|
|
|
|
|
: f = g := by
|
|
|
|
|
have h₂ := (exercise_3_12 hf hg).mp h
|
|
|
|
|
have hfg := Set.Subset.antisymm_iff.mpr ⟨h₁, h₂.left⟩
|
|
|
|
|
ext p
|
|
|
|
|
have (a, b) := p
|
|
|
|
|
apply Iff.intro
|
|
|
|
|
· intro hp
|
|
|
|
|
have ⟨x, hx⟩ := h₂.right a (mem_pair_imp_fst_mem_dom hp)
|
|
|
|
|
rw [single_valued_eq_unique hf hp hx.left.left]
|
|
|
|
|
exact hx.left.right
|
|
|
|
|
· intro hp
|
|
|
|
|
rw [← hfg] at h₂
|
|
|
|
|
have ⟨x, hx⟩ := h₂.right a (mem_pair_imp_fst_mem_dom hp)
|
|
|
|
|
rw [single_valued_eq_unique hg hp hx.left.right]
|
|
|
|
|
exact hx.left.left
|
|
|
|
|
|
|
|
|
|
/-- #### Exercise 3.14 (a)
|
|
|
|
|
|
|
|
|
|
Assume that `f` and `g` are functions. Show that `f ∩ g` is a function.
|
|
|
|
|
-/
|
|
|
|
|
theorem exercise_3_14_a {f g : Set.Relation α}
|
|
|
|
|
(hf : f.isSingleValued) (_ : g.isSingleValued)
|
|
|
|
|
: (f ∩ g).isSingleValued :=
|
|
|
|
|
single_valued_subset hf (Set.inter_subset_left f g)
|
|
|
|
|
|
|
|
|
|
/-- #### Exercise 3.14 (b)
|
|
|
|
|
|
|
|
|
|
Assume that `f` and `g` are functions. Show that `f ∪ g` is a function **iff**
|
|
|
|
|
`f(x) = g(x)` for every `x` in `(dom f) ∩ (dom g)`.
|
|
|
|
|
-/
|
|
|
|
|
theorem exercise_3_14_b {f g : Set.Relation α}
|
|
|
|
|
(hf : f.isSingleValued) (hg : g.isSingleValued)
|
|
|
|
|
: (f ∪ g).isSingleValued ↔
|
|
|
|
|
(∀ x ∈ dom f ∩ dom g, ∃! y, (x, y) ∈ f ∧ (x, y) ∈ g) := by
|
|
|
|
|
apply Iff.intro
|
|
|
|
|
· intro h x hx
|
|
|
|
|
have ⟨y₁, hy₁⟩ := hf x hx.left
|
|
|
|
|
have ⟨y₂, hy₂⟩ := hg x hx.right
|
2023-07-05 22:04:43 +00:00
|
|
|
|
have : y₁ = y₂ := single_valued_eq_unique h
|
|
|
|
|
(Or.inl hy₁.left.right)
|
|
|
|
|
(Or.inr hy₂.left.right)
|
2023-07-05 18:45:51 +00:00
|
|
|
|
rw [← this] at hy₂
|
|
|
|
|
refine ⟨y₁, ⟨hy₁.left.right, hy₂.left.right⟩, ?_⟩
|
|
|
|
|
intro y₃ hfy₃
|
|
|
|
|
exact single_valued_eq_unique hf hfy₃.left hy₁.left.right
|
|
|
|
|
· intro h x hx
|
2023-07-05 22:04:43 +00:00
|
|
|
|
by_cases hfx : x ∈ dom f <;>
|
|
|
|
|
by_cases hgx : x ∈ dom g
|
|
|
|
|
· -- `x ∈ dom f ∧ x ∈ dom g`
|
|
|
|
|
have ⟨y₁, hy₁⟩ := hf x hfx
|
|
|
|
|
have ⟨y₂, hy₂⟩ := hg x hgx
|
|
|
|
|
refine ⟨y₁, ⟨?_, Or.inl hy₁.left.right⟩, ?_⟩
|
|
|
|
|
· unfold ran
|
|
|
|
|
simp only [Set.mem_image, Set.mem_union, Prod.exists, exists_eq_right]
|
|
|
|
|
exact ⟨x, Or.inl hy₁.left.right⟩
|
|
|
|
|
· intro y₃ hy₃
|
|
|
|
|
apply Or.elim hy₃.right
|
|
|
|
|
· intro hxy
|
|
|
|
|
exact single_valued_eq_unique hf hxy hy₁.left.right
|
|
|
|
|
· refine fun hxy => single_valued_eq_unique hg hxy ?_
|
|
|
|
|
have : y₁ = y₂ := by
|
|
|
|
|
have ⟨z, ⟨hz, _⟩⟩ := h x ⟨hfx, hgx⟩
|
|
|
|
|
rw [
|
|
|
|
|
single_valued_eq_unique hf hy₁.left.right hz.left,
|
|
|
|
|
single_valued_eq_unique hg hy₂.left.right hz.right
|
|
|
|
|
]
|
|
|
|
|
rw [this]
|
|
|
|
|
exact hy₂.left.right
|
|
|
|
|
· -- `x ∈ dom f ∧ x ∉ dom g`
|
|
|
|
|
have ⟨y, hy⟩ := dom_exists hfx
|
|
|
|
|
have hxy : (x, y) ∈ f ∪ g := (Set.subset_union_left f g) hy
|
|
|
|
|
refine ⟨y, ⟨mem_pair_imp_snd_mem_ran hxy, hxy⟩, ?_⟩
|
|
|
|
|
intro y₁ hy₁
|
|
|
|
|
apply Or.elim hy₁.right
|
|
|
|
|
· intro hx'
|
|
|
|
|
exact single_valued_eq_unique hf hx' hy
|
|
|
|
|
· intro hx'
|
|
|
|
|
exact absurd (mem_pair_imp_fst_mem_dom hx') hgx
|
|
|
|
|
· -- `x ∉ dom f ∧ x ∈ dom g`
|
|
|
|
|
have ⟨y, hy⟩ := dom_exists hgx
|
|
|
|
|
have hxy : (x, y) ∈ f ∪ g := (Set.subset_union_right f g) hy
|
|
|
|
|
refine ⟨y, ⟨mem_pair_imp_snd_mem_ran hxy, hxy⟩, ?_⟩
|
|
|
|
|
intro y₁ hy₁
|
|
|
|
|
apply Or.elim hy₁.right
|
|
|
|
|
· intro hx'
|
|
|
|
|
exact absurd (mem_pair_imp_fst_mem_dom hx') hfx
|
|
|
|
|
· intro hx'
|
|
|
|
|
exact single_valued_eq_unique hg hx' hy
|
|
|
|
|
· -- `x ∉ dom f ∧ x ∉ dom g`
|
|
|
|
|
exfalso
|
|
|
|
|
unfold dom at hx
|
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_image,
|
|
|
|
|
Set.mem_union,
|
|
|
|
|
Prod.exists,
|
|
|
|
|
exists_and_right,
|
|
|
|
|
exists_eq_right
|
|
|
|
|
] at hx
|
|
|
|
|
have ⟨_, hy⟩ := hx
|
|
|
|
|
apply Or.elim hy
|
|
|
|
|
· intro hz
|
|
|
|
|
exact absurd (mem_pair_imp_fst_mem_dom hz) hfx
|
|
|
|
|
· intro hz
|
|
|
|
|
exact absurd (mem_pair_imp_fst_mem_dom hz) hgx
|
2023-07-05 18:45:51 +00:00
|
|
|
|
|
|
|
|
|
/-- #### Exercise 3.15
|
|
|
|
|
|
|
|
|
|
Let `𝓐` be a set of functions such that for any `f` and `g` in `𝓐`, either
|
|
|
|
|
`f ⊆ g` or `g ⊆ f`. Show that `⋃ 𝓐` is a function.
|
|
|
|
|
-/
|
|
|
|
|
theorem exercise_3_15 {𝓐 : Set (Set.Relation α)}
|
|
|
|
|
(h𝓐 : ∀ F ∈ 𝓐, F.isSingleValued)
|
|
|
|
|
(h : ∀ F, ∀ G, F ∈ 𝓐 → G ∈ 𝓐 → F ⊆ G ∨ G ⊆ F)
|
|
|
|
|
: isSingleValued (⋃₀ 𝓐) := by
|
|
|
|
|
intro x hx
|
|
|
|
|
have ⟨y₁, hy₁⟩ := dom_exists hx
|
|
|
|
|
refine ⟨y₁, ⟨mem_pair_imp_snd_mem_ran hy₁, hy₁⟩, ?_⟩
|
|
|
|
|
intro y₂ hy₂
|
|
|
|
|
have ⟨f, hf⟩ : ∃ f : Set.Relation α, f ∈ 𝓐 ∧ (x, y₁) ∈ f := hy₁
|
|
|
|
|
have ⟨g, hg⟩ : ∃ g : Set.Relation α, g ∈ 𝓐 ∧ (x, y₂) ∈ g := hy₂.right
|
|
|
|
|
apply Or.elim (h f g hf.left hg.left)
|
|
|
|
|
· intro hf'
|
|
|
|
|
have := hf' hf.right
|
|
|
|
|
exact single_valued_eq_unique (h𝓐 g hg.left) hg.right this
|
|
|
|
|
· intro hg'
|
|
|
|
|
have := hg' hg.right
|
|
|
|
|
exact single_valued_eq_unique (h𝓐 f hf.left) this hf.right
|
|
|
|
|
|
2023-07-05 22:04:43 +00:00
|
|
|
|
/-! #### Exercise 3.17
|
|
|
|
|
|
|
|
|
|
Show that the composition of two single-rooted sets is again single-rooted.
|
|
|
|
|
Conclude that the composition of two one-to-one functions is again one-to-one.
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
theorem exercise_3_17_i {F G : Set.Relation α}
|
|
|
|
|
(hF : F.isSingleRooted) (hG : G.isSingleRooted)
|
|
|
|
|
: (F.comp G).isSingleRooted := by
|
|
|
|
|
intro v hv
|
|
|
|
|
|
|
|
|
|
have ⟨u₁, hu₁⟩ := ran_exists hv
|
|
|
|
|
have hu₁' := hu₁
|
|
|
|
|
unfold comp at hu₁'
|
|
|
|
|
simp only [Set.mem_setOf_eq] at hu₁'
|
|
|
|
|
have ⟨t₁, ht₁⟩ := hu₁'
|
|
|
|
|
unfold ExistsUnique
|
|
|
|
|
refine ⟨u₁, ⟨mem_pair_imp_fst_mem_dom hu₁, hu₁⟩, ?_⟩
|
|
|
|
|
|
|
|
|
|
intro u₂ hu₂
|
|
|
|
|
have hu₂' := hu₂
|
|
|
|
|
unfold comp at hu₂'
|
|
|
|
|
simp only [Set.mem_setOf_eq] at hu₂'
|
|
|
|
|
have ⟨_, ⟨t₂, ht₂⟩⟩ := hu₂'
|
|
|
|
|
|
|
|
|
|
have ht : t₁ = t₂ := single_rooted_eq_unique hF ht₁.right ht₂.right
|
|
|
|
|
rw [ht] at ht₁
|
|
|
|
|
exact single_rooted_eq_unique hG ht₂.left ht₁.left
|
|
|
|
|
|
|
|
|
|
theorem exercise_3_17_ii {F G : Set.Relation α}
|
|
|
|
|
(hF : F.isOneToOne) (hG : G.isOneToOne)
|
|
|
|
|
: (F.comp G).isOneToOne := And.intro
|
|
|
|
|
(single_valued_comp_is_single_valued hF.left hG.left)
|
|
|
|
|
(exercise_3_17_i hF.right hG.right)
|
|
|
|
|
|
|
|
|
|
/-! #### Exercise 3.18
|
|
|
|
|
|
|
|
|
|
Let `R` be the set
|
|
|
|
|
```
|
|
|
|
|
{⟨0, 1⟩, ⟨0, 2⟩, ⟨0, 3⟩, ⟨1, 2⟩, ⟨1, 3⟩, ⟨2, 3⟩}
|
|
|
|
|
```
|
|
|
|
|
Evaluate the following: `R ∘ R`, `R ↾ {1}`, `R⁻¹ ↾ {1}`, `R⟦{1}⟧`, and
|
|
|
|
|
`R⁻¹⟦{1}⟧`.
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
section
|
|
|
|
|
|
|
|
|
|
variable {R : Set.Relation ℕ}
|
|
|
|
|
variable (hR : R = {(0, 1), (0, 2), (0, 3), (1, 2), (1, 3), (2, 3)})
|
|
|
|
|
|
|
|
|
|
theorem exercise_3_18_i
|
|
|
|
|
: R.comp R = {(0, 2), (0, 3), (1, 3)} := by
|
|
|
|
|
rw [hR]
|
|
|
|
|
unfold comp
|
|
|
|
|
simp only [Set.mem_singleton_iff, Set.mem_insert_iff, or_self, Prod.mk.injEq]
|
|
|
|
|
ext x
|
|
|
|
|
have (a, b) := x
|
|
|
|
|
apply Iff.intro
|
|
|
|
|
· simp only [Set.mem_setOf_eq, Set.mem_singleton_iff, Set.mem_insert_iff]
|
|
|
|
|
intro ⟨t, ht₁, ht₂⟩
|
|
|
|
|
casesm* _ ∨ _
|
|
|
|
|
all_goals case _ hl hr => first
|
|
|
|
|
| {rw [hl.right] at hr; simp at hr}
|
|
|
|
|
| {rw [hl.left] at hr; simp at hr}
|
|
|
|
|
| {rw [hl.left, hr.right]; simp}
|
|
|
|
|
· simp only [
|
|
|
|
|
Set.mem_singleton_iff,
|
|
|
|
|
Set.mem_insert_iff,
|
|
|
|
|
Prod.mk.injEq,
|
|
|
|
|
Set.mem_setOf_eq
|
|
|
|
|
]
|
|
|
|
|
intro h
|
|
|
|
|
casesm* _ ∨ _
|
|
|
|
|
· case _ h =>
|
|
|
|
|
refine ⟨1, Or.inl ⟨h.left, rfl⟩, ?_⟩
|
|
|
|
|
iterate 3 right
|
|
|
|
|
left
|
|
|
|
|
exact ⟨rfl, h.right⟩
|
|
|
|
|
· case _ h =>
|
|
|
|
|
refine ⟨1, Or.inl ⟨h.left, rfl⟩, ?_⟩
|
|
|
|
|
iterate 4 right
|
|
|
|
|
left
|
|
|
|
|
exact ⟨rfl, h.right⟩
|
|
|
|
|
· case _ h =>
|
|
|
|
|
refine ⟨2, ?_, ?_⟩
|
|
|
|
|
· iterate 3 right
|
|
|
|
|
left
|
|
|
|
|
exact ⟨h.left, rfl⟩
|
|
|
|
|
· iterate 5 right
|
|
|
|
|
exact ⟨rfl, h.right⟩
|
|
|
|
|
|
|
|
|
|
theorem exercise_3_18_ii
|
|
|
|
|
: R.restriction {1} = {(1, 2), (1, 3)} := by
|
|
|
|
|
rw [hR]
|
|
|
|
|
unfold restriction
|
|
|
|
|
ext p
|
|
|
|
|
have (a, b) := p
|
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_singleton_iff,
|
|
|
|
|
Set.mem_insert_iff,
|
|
|
|
|
Set.mem_setOf_eq,
|
|
|
|
|
or_self
|
|
|
|
|
]
|
|
|
|
|
apply Iff.intro
|
|
|
|
|
· intro ⟨hp, ha⟩
|
|
|
|
|
rw [ha]
|
|
|
|
|
simp only [Prod.mk.injEq, true_and]
|
|
|
|
|
casesm* _ ∨ _
|
|
|
|
|
all_goals case _ h => first
|
|
|
|
|
| {rw [ha] at h; simp at h}
|
|
|
|
|
| {simp only [Prod.mk.injEq] at h; left; exact h.right}
|
|
|
|
|
| {simp only [Prod.mk.injEq] at h; right; exact h.right}
|
|
|
|
|
· intro h
|
|
|
|
|
apply Or.elim h
|
|
|
|
|
· intro hab
|
|
|
|
|
simp only [Prod.mk.injEq] at hab
|
|
|
|
|
refine ⟨?_, hab.left⟩
|
|
|
|
|
iterate 3 right
|
|
|
|
|
left
|
|
|
|
|
rw [hab.left, hab.right]
|
|
|
|
|
· intro hab
|
|
|
|
|
simp only [Prod.mk.injEq] at hab
|
|
|
|
|
refine ⟨?_, hab.left⟩
|
|
|
|
|
iterate 4 right
|
|
|
|
|
left
|
|
|
|
|
rw [hab.left, hab.right]
|
|
|
|
|
|
|
|
|
|
theorem exercise_3_18_iii
|
|
|
|
|
: R.inv.restriction {1} = {(1, 0)} := by
|
|
|
|
|
rw [hR]
|
|
|
|
|
unfold inv restriction
|
|
|
|
|
ext p
|
|
|
|
|
have (a, b) := p
|
|
|
|
|
simp only [
|
|
|
|
|
Set.mem_singleton_iff,
|
|
|
|
|
Set.mem_insert_iff,
|
|
|
|
|
or_self,
|
|
|
|
|
exists_eq_or_imp,
|
|
|
|
|
exists_eq_left,
|
|
|
|
|
Set.mem_setOf_eq,
|
|
|
|
|
Prod.mk.injEq
|
|
|
|
|
]
|
|
|
|
|
apply Iff.intro
|
|
|
|
|
· intro ⟨hb, ha⟩
|
|
|
|
|
casesm* _ ∨ _
|
|
|
|
|
all_goals case _ hr => first
|
|
|
|
|
| exact ⟨ha, hr.right.symm⟩
|
|
|
|
|
| rw [ha] at hr; simp at hr
|
|
|
|
|
· intro ⟨ha, hb⟩
|
|
|
|
|
rw [ha, hb]
|
|
|
|
|
simp
|
|
|
|
|
|
|
|
|
|
theorem exercise_3_18_iv
|
|
|
|
|
: R.image {1} = {2, 3} := by
|
|
|
|
|
rw [hR]
|
|
|
|
|
unfold image
|
|
|
|
|
ext y
|
|
|
|
|
simp
|
|
|
|
|
|
|
|
|
|
theorem exercise_3_18_v
|
|
|
|
|
: R.inv.image {1} = {0} := by
|
|
|
|
|
rw [hR]
|
|
|
|
|
unfold inv image
|
|
|
|
|
ext y
|
|
|
|
|
simp
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
2023-07-05 18:45:51 +00:00
|
|
|
|
end Relation
|
2023-06-23 21:47:55 +00:00
|
|
|
|
|
2023-06-07 02:16:06 +00:00
|
|
|
|
end Enderton.Set.Chapter_3
|