Skip to content

Class Field Theory

Introduction

This chapter deals with abelian extensions of number fields and the rational numbers.

Class Field Theory, here specifically, class field theory of global number fields, deals with abelian extension, ie. fields where the group of automorphisms is abelian. For extensions of , the famous Kronnecker-Weber theorem classifies all such fields: a field is abelian if and only if it is contained in some cyclotomic field. For general number fields this is more involved and even for extensions of is is not practical.

In Hecke, abelian extensions are parametrized by quotients of so called ray class groups. The language of ray class groups while dated is more applicable to algorithms than the modern language of idel class groups and quotients.

Ray Class Groups

Given an integral ideal and a list of real places , the ray class group modulo , is defined as the group of ideals coprime to modulo the elements s.th. and for all , . This is a finite abelian group. For and we get is the class group, if contains all real places, we obtain the narrow class group, or strict class group.

# ray_class_groupMethod.

ray_class_group(m::AbsNumFieldOrderIdeal{AbsSimpleNumField, AbsSimpleNumFieldElem}, inf_plc::Vector{InfPlc}; n_quo::Int, lp::Dict{AbsNumFieldOrderIdeal{AbsSimpleNumField, AbsSimpleNumFieldElem}, Int}) -> FinGenAbGroup, MapRayClassGrp

Given an ideal and a set of infinite places of , this function returns the corresponding ray class group as an abstract group and a map going from the group into the group of ideals of that are coprime to . If n_quo is set, it will return the group modulo n_quo. The factorization of can be given with the keyword argument lp.

source

# class_groupMethod.

class_group(K::AbsSimpleNumField) -> FinGenAbGroup, Map

Shortcut for class_group(maximal_order(K)): returns the class group as an abelian group and a map from this group to the set of ideals of the maximal order.

source

# norm_groupMethod.

norm_group(f::Nemo.PolyRingElem, mR::Hecke.MapRayClassGrp, is_abelian::Bool = true; of_closure::Bool = false) -> Hecke.FinGenGrpAb, Hecke.FinGenGrpAbMap

norm_group(f::Array{PolyRingElem{AbsSimpleNumFieldElem}}, mR::Hecke.MapRayClassGrp, is_abelian::Bool = true; of_closure::Bool = false) -> Hecke.FinGenGrpAb, Hecke.FinGenGrpAbMap

Computes the subgroup of the Ray Class Group given by the norm of the extension generated by a/the roots of . If is_abelian is set to true, then the code assumes the field to be abelian, hence the algorithm stops when the quotient by the norm group has the correct order. Even though the algorithm is probabilistic by nature, in this case the result is guaranteed. If of_closure is given, then the norm group of the splitting field of the polynomial(s) is computed. It is the callers responsibility to ensure that the ray class group passed in is large enough.

source

# norm_groupMethod.

norm_group(K::RelSimpleNumField{AbsSimpleNumFieldElem}, mR::Hecke.MapRayClassGrp) -> Hecke.FinGenGrpAb, Hecke.FinGenGrpAbMap

norm_group(K::RelNonSimpleNumField{AbsSimpleNumFieldElem}, mR::Hecke.MapRayClassGrp) -> Hecke.FinGenGrpAb, Hecke.FinGenGrpAbMap

Computes the subgroup of the Ray Class Group given by the norm of the extension.

source

Ray Class Fields

In general, the construction of a class field starts with a (ray) class group. Each quotient of a ray class group then defines a ray class field, the defining property is that the (relative) automorphism group is canonically isomorphic to the quotient of the ray class group where the isomorphism is given by the Artin (or Frobenius) map. Since, in Hecke, the (ray) class groups have no link to the field, actually this has to be specified using the maps.

It should be noted that this is a lazy construction: nothing is computed at this point.

# ray_class_fieldMethod.

ray_class_field(m::MapClassGrp) -> ClassField
ray_class_field(m::MapRayClassGrp) -> ClassField

Creates the (formal) abelian extension defined by the map where is the set of ideals coprime to the modulus defining and is a quotient of the ray class group (or class group). The map must be the map returned from a call to {classgroup} or {rayclass_group}.

source

# ray_class_fieldMethod.

ray_class_field(m::Union{MapClassGrp, MapRayClassGrp}, quomap::FinGenAbGroupHom) -> ClassField

For a map computed by either {rayclassgroup} or {class_group} and a canonical projection (quotient map) as returned by {quo} for q quotient of the domain of and a subgroup of , create the (formal) abelian extension where the (relative) automorphism group is canonically isomorphic to the codomain of .

source

# ray_class_fieldMethod.

ray_class_field(I::AbsNumFieldOrderIdeal; n_quo = 0) -> ClassField

The ray class field modulo . If n_quo is given, then the largest subfield of exponent is computed.

source

# ray_class_fieldMethod.

ray_class_field(I::AbsNumFieldOrderIdeal, inf::Vector{InfPlc}; n_quo = 0) -> ClassField

The ray class field modulo and the infinite places given. If n_quo is given, then the largest subfield of exponent is computed.

source

# hilbert_class_fieldMethod.

hilbert_class_field(k::AbsSimpleNumField) -> ClassField

The Hilbert class field of as a formal (ray-) class field.

source

# ring_class_fieldMethod.

ring_class_field(O::AbsNumFieldOrder) -> ClassField

The ring class field of , i.e. the maximal abelian extension ramified only at primes dividing the conductor with the automorphism group isomorphic to the Picard group.

source

Example

julia> Qx, x = polynomial_ring(FlintQQ, "x");


julia> K, a = number_field(x^2 - 10, "a");


julia> c, mc = class_group(K)
(Z/2, ClassGroup map of
Set of ideals of Maximal order of Number field of degree 2 over QQ
with basis AbsSimpleNumFieldElem[1, a])

julia> A = ray_class_field(mc)
Class field defined mod (<1, 1>, InfPlc{AbsSimpleNumField, AbsSimpleNumFieldEmbedding}[]) of structure Z/2

Conversions

Given a ray class field, it is possible to actually compute defining equation(s) for this field. In general, the number field constructed this way will be non-simple by type and is defined by a polynomial for each maximal cyclic quotient of prime power order in the defining group.

The algorithm employed is based on Kummer-theory and requires the addition of a suitable root of unity. Progress can be monitored by setting set_verbose_level(:ClassField, n) where

# number_fieldMethod.

number_field(CF::ClassField) -> RelNonSimpleNumField{AbsSimpleNumFieldElem}

Given a (formal) abelian extension, compute the class field by finding defining polynomials for all prime power cyclic subfields.

Note, the return type is always a non-simple extension.

source

julia> Qx, x = polynomial_ring(FlintQQ, "x");


julia> k, a = number_field(x^2 - 10, "a");


julia> c, mc = class_group(k);


julia> A = ray_class_field(mc)
Class field defined mod (<1, 1>, InfPlc{AbsSimpleNumField, AbsSimpleNumFieldEmbedding}[]) of structure Z/2

julia> K = number_field(A)
Non-simple number field with defining polynomials [x^2 - 2]
  over number field with defining polynomial x^2 - 10
    over rational field

julia> ZK = maximal_order(K)
Relative maximal order of Non-simple number field of degree 2 over number field
with pseudo-basis
(1, 1//1 * <1, 1>)
(_$1 + a, 1//4 * <2, a>)

julia> isone(discriminant(ZK))
true

# ray_class_fieldMethod.

ray_class_field(K::RelSimpleNumField{AbsSimpleNumFieldElem}) -> ClassField
ray_class_field(K::AbsSimpleNumField) -> ClassField

For a (relative) abelian extension, compute an abstract representation as a class field.

source

# genus_fieldMethod.

genus_field(A::ClassField, k::AbsSimpleNumField) -> ClassField

The maximal extension contained in that is the compositum of with an abelian extension of .

source

# maximal_abelian_subfieldMethod.

maximal_abelian_subfield(A::ClassField, k::AbsSimpleNumField) -> ClassField

The maximal abelian extension of contained in . must be a subfield of the base field of .

source

# maximal_abelian_subfieldMethod.

maximal_abelian_subfield(K::RelSimpleNumField{AbsSimpleNumFieldElem}; of_closure::Bool = false) -> ClassField

Using a probabilistic algorithm for the norm group computation, determine the maximal abelian subfield in over its base field. If of_closure is set to true, then the algorithm is applied to the normal closure of (without computing it).

source

Invariants

# degreeMethod.

degree(A::ClassField)

The degree of over its base field, i.e. the size of the defining ideal group.

source

# base_ringMethod.

base_ring(A::ClassField)

The maximal order of the field that is defined over.

source

# base_fieldMethod.

base_field(A::ClassField)

The number field that is defined over.

source

# discriminantMethod.

discriminant(C::ClassField) -> AbsNumFieldOrderIdeal{AbsSimpleNumField, AbsSimpleNumFieldElem}

Using the conductor-discriminant formula, compute the (relative) discriminant of . This does not use the defining equations.

source

# conductorMethod.

conductor(C::ClassField) -> AbsNumFieldOrderIdeal{AbsSimpleNumField, AbsSimpleNumFieldElem}, Vector{InfPlc}

Return the conductor of the abelian extension corresponding to .

source

# defining_modulusMethod.

defining_modulus(CF::ClassField)

The modulus, i.e. an ideal of the set of real places, used to create the class field.

source

# is_cyclicMethod.

is_cyclic(C::ClassField)

Tests if the (relative) automorphism group of is cyclic (by checking the defining ideal group).

source

# is_conductorMethod.

is_conductor(C::Hecke.ClassField, m::AbsNumFieldOrderIdeal{AbsSimpleNumField, AbsSimpleNumFieldElem}, inf_plc::Vector{InfPlc}=InfPlc[]; check) -> AbsNumFieldOrderIdeal{AbsSimpleNumField, AbsSimpleNumFieldElem}, Vector{InfPlc}

Checks if (m, inf_plc) is the conductor of the abelian extension corresponding to . If check is false, it assumes that the given modulus is a multiple of the conductor. This is usually faster than computing the conductor.

source

# is_normalMethod.

is_normal(C::ClassField) -> Bool

For a class field defined over a normal base field , decide if is normal over .

source

# is_centralMethod.

is_central(C::ClassField) -> Bool

For a class field defined over a normal base field , decide if is central over .

source

Operations

# *Method.

*(A::ClassField, B::ClassField) -> ClassField

The compositum of and as a (formal) class field.

source

# compositumMethod.

compositum(a::ClassField, b::ClassField) -> ClassField

The compositum of and as a (formal) class field.

source

# ==Method.

==(a::ClassField, b::ClassField)

Tests if and are equal.

source

# intersectMethod.

intersect(a::ClassField, b::ClassField) -> ClassField

The intersection of and as a class field.

source

# prime_decomposition_typeMethod.

prime_decomposition_type(C::ClassField, p::AbsNumFieldOrderIdeal) -> (Int, Int, Int)

For a prime in the base ring of , determine the splitting type of in . ie. the tuple giving the ramification degree, the inertia and the number of primes above .

source

# is_subfieldMethod.

is_subfield(a::ClassField, b::ClassField) -> Bool

Determines if is a subfield of .

source

# is_local_normMethod.

is_local_norm(r::ClassField, a::AbsNumFieldOrderElem) -> Bool

Tests if is a local norm at all finite places in the extension implicitly given by .

source

# is_local_normMethod.

is_local_norm(r::ClassField, a::AbsNumFieldOrderElem, p::AbsNumFieldOrderIdeal) -> Bool

Tests if is a local norm at in the extension implicitly given by . Currently the conductor cannot have infinite places.

source

# normal_closureMethod.

normal_closure(C::ClassField) -> ClassField

For a ray class field extending a normal base field , compute the normal closure over .

source

# subfieldsMethod.

subfields(C::ClassField; degree::Int) -> Vector{ClassField}

Find all subfields of over the base field.

If the optional keyword argument degree is positive, then only those with prescribed degree will be returned.

Note

This will not find all subfields over , but only the ones sharing the same base field.

source