This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ring_theory/ring_hom/integral): Integral extensions are stable u…
…nder base change. (#15806)
- Loading branch information
Showing
4 changed files
with
86 additions
and
4 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,46 @@ | ||
/- | ||
Copyright (c) 2021 Andrew Yang. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Andrew Yang | ||
-/ | ||
import ring_theory.local_properties | ||
import ring_theory.localization.integral | ||
|
||
/-! | ||
# The meta properties of integral ring homomorphisms. | ||
-/ | ||
|
||
namespace ring_hom | ||
|
||
open_locale tensor_product | ||
|
||
open tensor_product algebra.tensor_product | ||
|
||
lemma is_integral_stable_under_composition : | ||
stable_under_composition (λ R S _ _ f, by exactI f.is_integral) := | ||
by { introv R hf hg, exactI ring_hom.is_integral_trans _ _ hf hg } | ||
|
||
lemma is_integral_respects_iso : | ||
respects_iso (λ R S _ _ f, by exactI f.is_integral) := | ||
begin | ||
apply is_integral_stable_under_composition.respects_iso, | ||
introv x, | ||
resetI, | ||
rw ← e.apply_symm_apply x, | ||
apply ring_hom.is_integral_map | ||
end | ||
|
||
lemma is_integral_stable_under_base_change : | ||
stable_under_base_change (λ R S _ _ f, by exactI f.is_integral) := | ||
begin | ||
introv R h x, | ||
resetI, | ||
apply tensor_product.induction_on x, | ||
{ apply is_integral_zero }, | ||
{ intros x y, exact is_integral.tmul x (h y) }, | ||
{ intros x y hx hy, exact is_integral_add _ hx hy } | ||
end | ||
|
||
end ring_hom |
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