Principal ideal rings and principal ideal domains #
A principal ideal ring (PIR) is a ring in which all left ideals are principal. A principal ideal domain (PID) is an integral domain which is a principal ideal ring.
Main definitions #
Note that for principal ideal domains, one should use
[IsDomain R] [IsPrincipalIdealRing R]
. There is no explicit definition of a PID.
Theorems about PID's are in the principal_ideal_ring
namespace.
IsPrincipalIdealRing
: a predicate on rings, saying that every left ideal is principal.generator
: a generator of a principal ideal (or more generally submodule)to_unique_factorization_monoid
: a PID is a unique factorization domain
Main results #
to_maximal_ideal
: a non-zero prime ideal in a PID is maximal.EuclideanDomain.to_principal_ideal_domain
: a Euclidean domain is a PID.
An R
-submodule of M
is principal if it is generated by one element.
- principal' : ∃ (a : M), S = Submodule.span R {a}
Instances
Equations
- (_ : Submodule.IsPrincipal ⊥) = (_ : Submodule.IsPrincipal ⊥)
Equations
- (_ : Submodule.IsPrincipal ⊤) = (_ : Submodule.IsPrincipal ⊤)
A ring is a principal ideal ring if all (left) ideals are principal.
- principal : ∀ (S : Ideal R), Submodule.IsPrincipal S
Instances
Equations
- (_ : IsPrincipalIdealRing K) = (_ : IsPrincipalIdealRing K)
generator I
, if I
is a principal submodule, is an x ∈ M
such that span R {x} = I
Equations
- Submodule.IsPrincipal.generator S = Classical.choose (_ : ∃ (a : M), S = Submodule.span R {a})
Instances For
Equations
- (_ : IsPrincipalIdealRing R) = (_ : IsPrincipalIdealRing R)
Equations
- (_ : IsNoetherianRing R) = (_ : IsNoetherianRing R)
factors a
is a multiset of irreducible elements whose product is a
, up to units
Equations
- PrincipalIdealRing.factors a = if h : a = 0 then ∅ else Classical.choose (_ : ∃ (f : Multiset R), (∀ b ∈ f, Irreducible b) ∧ Associated (Multiset.prod f) a)
Instances For
If a RingHom
maps all units and all factors of an element a
into a submonoid s
, then it
also maps a
into that submonoid.
A principal ideal domain has unique factorization
Equations
- (_ : UniqueFactorizationMonoid R) = (_ : UniqueFactorizationMonoid R)
The surjective image of a principal ideal ring is again a principal ideal ring.
See also Irreducible.coprime_iff_not_dvd'
.
nonPrincipals R
is the set of all ideals of R
that are not principal ideals.
Equations
- nonPrincipals R = {I : Ideal R | ¬Submodule.IsPrincipal I}
Instances For
Any chain in the set of non-principal ideals has an upper bound which is non-principal. (Namely, the union of the chain is such an upper bound.)
If all prime ideals in a commutative ring are principal, so are all other ideals.