[Next][Prev] [Right] [Left] [Up] [Index] [Root]

Elementary Invariants

These functions return some simple information partially defining a local ring.

Prime(L) : RngPad -> RngIntElt
Prime(L) : FldPad -> RngIntElt
Prime(L) : RngPadRes -> RngIntElt
Prime(L) : RngPadResExt -> RngIntElt
Given a local ring or field L, return the prime p defining the p-adic ring or field underlying L. This is also the characteristic of the residue class field of L.
InertiaDegree(L) : RngPad -> RngIntElt
InertiaDegree(L) : FldPad -> RngIntElt
InertiaDegree(L) : RngPadRes -> RngIntElt
InertiaDegree(L) : RngPadResExt -> RngIntElt
Return the inertia degree of the local ring or fieldL over its coefficient ring.
InertiaDegree(K, L) : RngPad, RngPad -> RngIntElt
InertiaDegree(K, L) : FldPad, FldPad -> RngIntElt
InertiaDegree(K, L) : RngPadRes, RngPadRes -> RngIntElt
InertiaDegree(K, L) : RngPadResExt, RngPadResExt -> RngIntElt
Return the inertia degree of the local ring or field K relative to its subring L.
RamificationDegree(L) : RngPad -> RngIntElt
RamificationDegree(L) : FldPad -> RngIntElt
RamificationDegree(L) : RngPadRes -> RngIntElt
RamificationDegree(L) : RngPadResExt -> RngIntElt
Return the ramification degree of the local ring or field L over its coefficient ring.
RamificationDegree(K, L) : RngPad, RngPad -> RngIntElt
RamificationDegree(K, L) : FldPad, FldPad -> RngIntElt
RamificationDegree(K, L) : RngPadRes, RngPadRes -> RngIntElt
RamificationDegree(K, L) : RngPadResExt, RngPadResExt -> RngIntElt
Return the ramification degree of the local ring or field K relative to its subring L.
Degree(L) : RngPad -> RngIntElt
Degree(L) : FldPad -> RngIntElt
Degree(L) : RngPadRes -> RngIntElt
Degree(L) : RngPadResExt -> RngIntElt
Return the degree of the local ring or field L over its coefficient ring.
Degree(K, L) : RngPad, RngPad -> RngIntElt
Degree(K, L) : FldPad, FldPad -> RngIntElt
Degree(K, L) : RngPadRes, RngPadRes -> RngIntElt
Degree(K, L) : RngPadResExt, RngPadResExt -> RngIntElt
Return the degree of the local ring or field K relative to its subring L.
DefiningPolynomial(L) : RngPad -> RngUPolElt
DefiningPolynomial(L) : FldPad -> RngUPolElt
DefiningPolynomial(L) : RngPadRes -> RngUPolElt
DefiningPolynomial(L) : RngPadResExt -> RngUPolElt
Return the minimal polynomial of the generator of L over its coefficient ring. If L is p-adic, the polynomial x - 1 is returned. For free precision rings and fields, the coefficients of the defining polynomial are given to the default precision of L.
DefiningMap(L) : RngPad -> Map
DefiningMap(L) : FldPad -> Map
Given a free precision local ring or field L, return the map that was used to define the extension (see Section Creation Functions for Unbounded Precision Extensions for information on defining extension by maps). If a map was not used, then an error is raised.
HasDefiningMap(L) : RngPad -> BoolElt, Map
DefiningMap(L) : FldPad -> BoolElt, Map
Given a free precision local ring or field L, return true if L is defined by a map; if so, the defining map is also returned.
PrimeRing(L) : RngPad -> RngPad
PrimeRing(L) : RngPadRes -> RngPadRes
PrimeRing(L) : RngPadResExt -> RngPadRes
PrimeField(L) : FldPad -> FldPad
pAdicRing(L) : RngPad -> RngPad
pAdicRing(L) : RngPadRes -> RngPadRes
pAdicRing(L) : RngPadResExt -> RngPadRes
pAdicField(L) : FldPad -> FldPad
Given a local ring or field L, return the p-adic ring or field which is a subring of L.
BaseRing(L) : RngPad -> RngPad
BaseRing(L) : RngPadRes -> RngPadRes
BaseRing(L) : RngPadResExt -> Rng
CoefficientRing(L) : RngPad -> RngPad
CoefficientRing(L) : RngPadRes -> RngPadRes
CoefficientRing(L) : RngPadResExt -> Rng
BaseField(L) : FldPad -> FldPad
CoefficientField(L) : FldPad -> FldPad
Given a local ring or field L, return the base ring of L.
ResidueClassField(L) : RngPad -> FldFin, Map
Given a local ring or field L, return the residue class field K of L, and a map from L to K.
UniformizingElement(L) : RngPad -> RngPadElt
UniformizingElement(L) : RngPadRes -> RngPadResElt
UniformizingElement(L) : RngPadResExt -> RngPadResExtElt
UniformizingElement(L) : FldPad -> FldPadElt
Given a local ring or field L, return the uniformizing element of L.
L . 1 : RngPad -> RngPadElt
L . 1 : RngPadRes -> RngPadResElt
L . 1 : RngPadResExt -> RngPadResExtElt
L . 1 : FldPad -> FldPadElt
Given a local ring or field L, return an element alpha of L such that if K is L's base ring or field, then the powers of alpha give a basis of L as a vector space over K.
Precision(L) : RngPad -> RngIntElt
Precision(L) : RngPadRes -> RngIntElt
Precision(L) : RngPadResExt -> RngIntElt
Precision(L) : FldPad -> RngIntElt
Given a local ring or field L, return the precision with which L has been created. If L is a local ring this is the maximum absolute precision to which its elements can be created. If L is a local field this is the maximum relative precision to which its elements can be created. If L is an unbounded free precision ring or field, then infinity is returned.

Example RngLoc_elinvar (H61E5)

We illustrate the functions in this section for rings. Similar constructions can be used for fields.

> Zp := pAdicRing(5, 20);
> I<a> := UnramifiedExtension(Zp, 3);
> R<x> := PolynomialRing(I);
> L<b> := ext<I | x^3 + 5*a*x^2 + 5>;
> Prime(L);
5
> InertiaDegree(L);
1
The inertia degree of L is returned as 1 because L has been defined as a totally ramified extension of I. However, the inertia degree of L over Z_p is 3, because I itself is an unramified extension of Z_p.

> InertiaDegree(L, Zp);
3
> Degree(L);
3
> Degree(L, Zp);
9
> DefiningPolynomial(L);
x^3 + 5*a*x^2 + 5
> P<y> := PolynomialRing(Zp);
> DefiningPolynomial(I);
y^3 + 3*y + 3
> BaseRing(L);
Unramified extension defined by the polynomial x^3 + 3*x + 3
 over 5-adic ring mod 5^20
> PrimeRing(L);
5-adic ring mod 5^20
> PrimeRing(I);
5-adic ring mod 5^20
> ResidueClassField(L);
Finite field of size 5^3
Mapping from: RngPad: L to GF(5^3)
> ResidueClassField(I);
Finite field of size 5^3
Mapping from: RngPad: I to GF(5^3)
Here, we see that the residue class fields of I and L are identical. This is due to the fact that L is a totally ramified extension of I.

> UniformizingElement(L);
b
> Precision(L);
60
> Precision(I);
20
> R<a> := ext<pAdicRing(2) | 2>;
> DefiningPolynomial(R);
(1 + O(2^20))*.1^2 + (1 + O(2^20)) *.1 + 1 + O(2^20)
> Precision(R);
Infinity


 [Next][Prev] [Right] [Left] [Up] [Index] [Root]