Local rings #
Define local rings as commutative rings having a unique maximal ideal.
Main definitions #
LocalRing
: A predicate on commutative semirings, stating that for any pair of elements that adds up to1
, one of them is a unit. This is shown to be equivalent to the condition that there exists a unique maximal ideal.LocalRing.maximalIdeal
: The unique maximal ideal for a local rings. Its carrier set is the set of non units.IsLocalRingHom
: A predicate on semiring homomorphisms, requiring that it maps nonunits to nonunits. For local rings, this means that the image of the unique maximal ideal is again contained in the unique maximal ideal.LocalRing.ResidueField
: The quotient of a local ring by its maximal ideal.
- of_is_unit_or_is_unit_of_add_one :: (
- exists_pair_ne : ∃ x y, x ≠ y
in a local ring
R
, ifa + b = 1
, then eithera
is a unit orb
is a unit. In another word, for everya : R
, eithera
is a unit or1 - a
is a unit.- )
A semiring is local if it is nontrivial and a
or b
is a unit whenever a + b = 1
.
Note that LocalRing
is a predicate.
Instances
A semiring is local if it is nontrivial and the set of nonunits is closed under the addition.
A semiring is local if it has a unique maximal ideal.
The ideal of elements that are not units.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A local ring homomorphism
f : R ⟶ S
will send nonunits ofR
to nonunits ofS
.
A local ring homomorphism is a homomorphism f
between local rings such that a
in the domain
is a unit if f a
is a unit for any a
. See LocalRing.local_hom_TFAE
for other equivalent
definitions.
Instances
Equations
If f : R →+* S
is a local ring hom, then R
is a local ring if S
is.
The image of the maximal ideal of the source is contained within the maximal ideal of the target.
A ring homomorphism between local rings is a local ring hom iff it reflects units, i.e. any preimage of a unit is still a unit. https://stacks.math.columbia.edu/tag/07BJ
If f : R →+* S
is a surjective local ring hom, then the induced units map is surjective.
The residue field of a local ring is the quotient of the ring by its maximal ideal.
Equations
Instances For
Equations
- LocalRing.ResidueFieldCommRing R = let_fun this := inferInstance; this
Equations
- LocalRing.ResidueFieldInhabited R = let_fun this := inferInstance; this
Equations
The quotient map from a local ring to its residue field.
Equations
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
A local ring homomorphism into a field can be descended onto the residue field.
Equations
- LocalRing.ResidueField.lift f = Ideal.Quotient.lift (LocalRing.maximalIdeal R) f (_ : ∀ (a : R), a ∈ LocalRing.maximalIdeal R → ↑f a = 0)
Instances For
The map on residue fields induced by a local homomorphism between local rings
Equations
- One or more equations did not get rendered due to their size.
Instances For
Applying LocalRing.ResidueField.map
to the identity ring homomorphism gives the identity
ring homomorphism.
The composite of two LocalRing.ResidueField.map
s is the LocalRing.ResidueField.map
of the
composite.
If G
acts on R
as a MulSemiringAction
, then it also acts on LocalRing.ResidueField R
.
Equations
- One or more equations did not get rendered due to their size.