-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(AlgebraicGeometry): proper morphisms of schemes (#17863)
We define proper morphisms of schemes and show standard stability properties. Partly from the valuative criterion project. Co-authored by: Andrew Yang
- Loading branch information
Showing
5 changed files
with
98 additions
and
1 deletion.
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
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,69 @@ | ||
/- | ||
Copyright (c) 2024 Christian Merten, Andrew Yang. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Christian Merten, Andrew Yang | ||
-/ | ||
import Mathlib.AlgebraicGeometry.Morphisms.Separated | ||
import Mathlib.AlgebraicGeometry.Morphisms.UniversallyClosed | ||
import Mathlib.AlgebraicGeometry.Morphisms.FiniteType | ||
|
||
/-! | ||
# Proper morphisms | ||
A morphism of schemes is proper if it is separated, universally closed and (locally) of finite type. | ||
Note that we don't require quasi-compact, since this is implied by universally closed (TODO). | ||
-/ | ||
|
||
|
||
noncomputable section | ||
|
||
open CategoryTheory | ||
|
||
universe u | ||
|
||
namespace AlgebraicGeometry | ||
|
||
variable {X Y : Scheme.{u}} (f : X ⟶ Y) | ||
|
||
/-- A morphism is proper if it is separated, universally closed and locally of finite type. -/ | ||
@[mk_iff] | ||
class IsProper extends IsSeparated f, UniversallyClosed f, LocallyOfFiniteType f : Prop where | ||
|
||
lemma isProper_eq : @IsProper = | ||
(@IsSeparated ⊓ @UniversallyClosed : MorphismProperty Scheme) ⊓ @LocallyOfFiniteType := by | ||
ext X Y f | ||
rw [isProper_iff, ← and_assoc] | ||
rfl | ||
|
||
namespace IsProper | ||
|
||
instance : MorphismProperty.RespectsIso @IsProper := by | ||
rw [isProper_eq] | ||
infer_instance | ||
|
||
instance stableUnderComposition : MorphismProperty.IsStableUnderComposition @IsProper := by | ||
rw [isProper_eq] | ||
infer_instance | ||
|
||
instance : MorphismProperty.IsMultiplicative @IsProper := by | ||
rw [isProper_eq] | ||
infer_instance | ||
|
||
instance (priority := 900) [IsClosedImmersion f] : IsProper f where | ||
|
||
lemma stableUnderBaseChange : MorphismProperty.StableUnderBaseChange @IsProper := by | ||
rw [isProper_eq] | ||
exact MorphismProperty.StableUnderBaseChange.inf | ||
(MorphismProperty.StableUnderBaseChange.inf | ||
IsSeparated.stableUnderBaseChange universallyClosed_stableUnderBaseChange) | ||
locallyOfFiniteType_stableUnderBaseChange | ||
|
||
instance : IsLocalAtTarget @IsProper := by | ||
rw [isProper_eq] | ||
infer_instance | ||
|
||
end IsProper | ||
|
||
end AlgebraicGeometry |
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