File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed
Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ instance instIsLawson : IsLawson (WithLawson α) := ⟨rfl⟩
143143/-- If `α` is equipped with the Lawson topology, then it is homeomorphic to `WithLawson α`.
144144-/
145145def homeomorph [TopologicalSpace α] [IsLawson α] : WithLawson α ≃ₜ α :=
146- ofLawson.toHomeomorphOfIsInducing ⟨by erw [ IsLawson.topology_eq_lawson (α := α), induced_id]; rfl ⟩
146+ ofLawson.toHomeomorphOfIsInducing ⟨IsLawson.topology_eq_lawson (α := α) ▸ induced_id.symm ⟩
147147
148148theorem isOpen_preimage_ofLawson {S : Set α} :
149149 IsOpen (ofLawson ⁻¹' S) ↔ (lawson α).IsOpen S := Iff.rfl
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ variable {α}
233233/-- If `α` is equipped with the lower topology, then it is homeomorphic to `WithLower α`.
234234-/
235235def withLowerHomeomorph : WithLower α ≃ₜ α :=
236- WithLower.ofLower.toHomeomorphOfIsInducing ⟨by erw [ topology_eq α, induced_id]; rfl ⟩
236+ WithLower.ofLower.toHomeomorphOfIsInducing ⟨topology_eq α ▸ induced_id.symm ⟩
237237
238238theorem isOpen_iff_generate_Ici_compl : IsOpen s ↔ GenerateOpen { t | ∃ a, (Ici a)ᶜ = t } s := by
239239 rw [topology_eq α]; rfl
@@ -394,7 +394,7 @@ variable {α}
394394/-- If `α` is equipped with the upper topology, then it is homeomorphic to `WithUpper α`.
395395-/
396396def withUpperHomeomorph : WithUpper α ≃ₜ α :=
397- WithUpper.ofUpper.toHomeomorphOfIsInducing ⟨by erw [ topology_eq α, induced_id]; rfl ⟩
397+ WithUpper.ofUpper.toHomeomorphOfIsInducing ⟨topology_eq α ▸ induced_id.symm ⟩
398398
399399theorem isOpen_iff_generate_Iic_compl : IsOpen s ↔ GenerateOpen { t | ∃ a, (Iic a)ᶜ = t } s := by
400400 rw [topology_eq α]; rfl
Original file line number Diff line number Diff line change @@ -424,8 +424,7 @@ variable [TopologicalSpace α]
424424/-- If `α` is equipped with the Scott topology, then it is homeomorphic to `WithScott α`.
425425-/
426426def IsScott.withScottHomeomorph [IsScott α univ] : WithScott α ≃ₜ α :=
427- WithScott.ofScott.toHomeomorphOfIsInducing ⟨by
428- rw [IsScott.topology_eq α univ]; erw [induced_id]; rfl⟩
427+ WithScott.ofScott.toHomeomorphOfIsInducing ⟨IsScott.topology_eq α univ ▸ induced_id.symm⟩
429428
430429lemma IsScott.scottHausdorff_le [IsScott α univ] :
431430 scottHausdorff α univ ≤ ‹TopologicalSpace α› := by
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ instance _root_.OrderDual.instIsLowerSet [Preorder α] [TopologicalSpace α] [To
220220/-- If `α` is equipped with the upper set topology, then it is homeomorphic to
221221`WithUpperSet α`. -/
222222def WithUpperSetHomeomorph : WithUpperSet α ≃ₜ α :=
223- WithUpperSet.ofUpperSet.toHomeomorphOfIsInducing ⟨by erw [ topology_eq α, induced_id]; rfl ⟩
223+ WithUpperSet.ofUpperSet.toHomeomorphOfIsInducing ⟨topology_eq α ▸ induced_id.symm ⟩
224224
225225lemma isOpen_iff_isUpperSet : IsOpen s ↔ IsUpperSet s := by
226226 rw [topology_eq α]
@@ -305,7 +305,7 @@ instance _root_.OrderDual.instIsUpperSet [Preorder α] [TopologicalSpace α] [To
305305
306306/-- If `α` is equipped with the lower set topology, then it is homeomorphic to `WithLowerSet α`. -/
307307def WithLowerSetHomeomorph : WithLowerSet α ≃ₜ α :=
308- WithLowerSet.ofLowerSet.toHomeomorphOfIsInducing ⟨by erw [ topology_eq α, induced_id]; rfl ⟩
308+ WithLowerSet.ofLowerSet.toHomeomorphOfIsInducing ⟨topology_eq α ▸ induced_id.symm ⟩
309309
310310lemma isOpen_iff_isLowerSet : IsOpen s ↔ IsLowerSet s := by rw [topology_eq α]; rfl
311311
You can’t perform that action at this time.
0 commit comments