-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move map' from LocalizedModule to Defs , and update Isom
- Loading branch information
Showing
6 changed files
with
73 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/- | ||
Copyright (c) 2024 Yi Song. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Yi Song, SiHan Su | ||
-/ | ||
import Mathlib.Algebra.Module.Submodule.Localization | ||
|
||
import ModuleLocalProperties.Basic | ||
|
||
open Submodule IsLocalizedModule LocalizedModule Ideal LinearMap | ||
|
||
variable {R M N : Type*} [CommRing R] [AddCommGroup M] [Module R M] [AddCommGroup N] [Module R N] | ||
(f : M →ₗ[R] N) | ||
|
||
lemma injective_of_localization | ||
(h : ∀ (J : Ideal R) (hJ : J.IsMaximal), Function.Injective (map' J.primeCompl f)) : | ||
Function.Injective f := by | ||
simp only [← ker_eq_bot] at h ⊢ | ||
exact submodule_eq_bot_of_localization _ | ||
fun J hJ ↦ (localized'_ker_eq_ker_localizedMap _ _ _ _ f).trans (h J hJ) | ||
|
||
lemma surjective_of_localization | ||
(h : ∀ (J : Ideal R) (hJ : J.IsMaximal), Function.Surjective (map' J.primeCompl f)) : | ||
Function.Surjective f := by | ||
simp only [← range_eq_top] at h ⊢ | ||
exact submodule_eq_top_of_localization _ | ||
fun J hJ ↦ (localized'_range_eq_range_localizedMap _ _ _ f).trans (h J hJ) | ||
|
||
lemma bijective_of_localization | ||
(h : ∀ (J : Ideal R) (_ : J.IsMaximal), Function.Bijective (map' J.primeCompl f)) : | ||
Function.Bijective f := | ||
⟨injective_of_localization _ fun J hJ => (h J hJ).1, | ||
surjective_of_localization _ fun J hJ => (h J hJ).2⟩ | ||
|
||
noncomputable def linearEquivOfLocalization (h : ∀ (J : Ideal R) (_ : J.IsMaximal), | ||
Function.Bijective (map' J.primeCompl f)) : M ≃ₗ[R] N := | ||
LinearEquiv.ofBijective f <| bijective_of_localization _ h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters