mirror of
https://github.com/GTBarkley/comm_alg.git
synced 2024-12-26 07:38:36 -06:00
commit
5e45c14adc
2 changed files with 17 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
/build
|
||||
/lake-packages/*
|
||||
.DS_Store
|
||||
.DS_Store
|
||||
.cache/
|
15
comm_alg/sameer(artinian-rings).lean
Normal file
15
comm_alg/sameer(artinian-rings).lean
Normal file
|
@ -0,0 +1,15 @@
|
|||
import Mathlib.RingTheory.Ideal.Basic
|
||||
import Mathlib.RingTheory.Noetherian
|
||||
import Mathlib.RingTheory.Artinian
|
||||
import Mathlib.RingTheory.Ideal.Quotient
|
||||
import Mathlib.AlgebraicGeometry.PrimeSpectrum.Basic
|
||||
|
||||
lemma quotientRing_is_Artinian (R : Type _) [CommRing R] (I : Ideal R) (IsArt : IsArtinianRing R):
|
||||
IsArtinianRing (R⧸I) := by sorry
|
||||
|
||||
#check Ideal.IsPrime
|
||||
|
||||
lemma IsPrimeMaximal (R : Type _) [CommRing R] (I : Ideal R) (IsArt : IsArtinianRing R) (isPrime : Ideal.IsPrime I) : Ideal.IsMaximal I := by sorry
|
||||
|
||||
|
||||
-- Use Stacks project proof since it's broken into lemmas
|
Loading…
Reference in a new issue