Algebraic Number Fields

The Wolfram Language provides representation of algebraic numbers as Root objects. A Root object contains the minimal polynomial of the algebraic number and the root numberan integer indicating which of the roots of the minimal polynomial the Root object represents. This allows for unique representation of arbitrary complex algebraic numbers. A disadvantage is that performing arithmetic operations in this representation is quite costly. That is why the Wolfram Language requires the use of an additional function, RootReduce, in order to simplify arithmetic expressions. Restricting computations to be within a fixed finite algebraic extension of the rationals, , allows a more convenient representation of its elements as polynomials in .

AlgebraicNumber[θ,{c0,c1,,cn}]represent the algebraic number in

Representation of algebraic numbers as elements of a finite extension of rationals.

If is an algebraic integer with a minimal polynomial of degree , and , , are rational numbers, then AlgebraicNumber[θ,{c0,,cl}] is an inert numeric object:
N can be used to find a numeric approximation of an AlgebraicNumber object:

For any algebraic number and any list of rational numbers , , , AlgebraicNumber[θ,{c0,,cl}] evaluates to AlgebraicNumber[ξ,{d0,,dm}], where is an algebraic integer such that for some factor of the leading coefficient of the minimal polynomial of , is the degree of the minimal polynomial of , and

AlgebraicNumber automatically makes the generator of the extension an algebraic integer and the coefficient list equal in length to the degree of the extension:
AlgebraicNumber objects representing rational numbers reduce automatically to numbers:
Adding or multiplying AlgebraicNumber objects that explicitly belong to the same field (i.e. have the same first elements), adding or multiplying a rational number and an AlgebraicNumber object, or raising an AlgebraicNumber object to an integer power yields an AlgebraicNumber object:
RootReduce transforms AlgebraicNumber objects to Root objects:
ToNumberField[a,θ]express the algebraic number a in the number field generated by θ
ToNumberField[{a1,a2,},θ]express the ai in the field generated by θ
ToNumberField[{a1,a2,}]express the ai in a common extension field generated by a single algebraic number

Representing arbitrary algebraic numbers as elements of algebraic number fields.

ToNumberField can be used to find a common finite extension of rationals containing the given algebraic numbers:
This represents as an element of the field generated by Root[1-10 #12+#14&,4]:

Arithmetic within a fixed finite extension of rationals is much faster than arithmetic within the field of all complex algebraic numbers.

Suppose you need to find the value of rational function f with {x,y,z} replaced by algebraic numbers {a,b,c}:
A direct computation of the value of f at {a,b,c} using RootReduce takes a rather long time:
A faster alternative is to do the computation in a common algebraic number field containing {a,b,c}:
Arithmetic within the common number field is much faster:
Converting the resulting AlgebraicNumber object to a Root object is fast as well:

ToNumberField[{a1,a2,}] is equivalent to ToNumberField[{a1,a2,},Automatic], and does not necessarily use the smallest common field extension. ToNumberField[{a1,a2,},All] always uses the smallest common field extension.

Here the first AlgebraicNumber object is equal to so it does not generate the 4 th-degree field (Root[1-10 #12+#14&,4]) it is represented in. However, the common field found by ToNumberField contains the whole field (Root[1-10 #12+#14&,4]):
Specifying the second argument All makes ToNumberField find the smallest field possible:
MinimalPolynomial[a]give a pure function representation of the minimal polynomial over the integers of the algebraic number a
MinimalPolynomial[a,x]give the minimal polynomial of the algebraic number a as a polynomial in x
AlgebraicIntegerQ[a]give True if the algebraic number a is an algebraic integer and False otherwise
AlgebraicNumberDenominator[a]give the smallest positive integer n such that na is an algebraic integer
AlgebraicNumberTrace[a]give the trace of the algebraic number a
AlgebraicNumberNorm[a]give the norm of the algebraic number a
AlgebraicUnitQ[a]give True if the algebraic number a is an algebraic unit and False otherwise
RootOfUnityQ[a]give True if the algebraic number a is a root of unity and False otherwise

Functions for computing algebraic number properties.

The minimal polynomial of an algebraic number is the lowest-degree polynomial with integer coefficients and the smallest positive leading coefficient, such that .

This gives the minimal polynomial of expressed as a pure function:
This gives the minimal polynomial of Root[#15-2 #1+7&,1]2+1 expressed as a polynomial in x:

An algebraic number is an algebraic integer if and only if its MinimalPolynomial is monic.

This shows that is an algebraic integer:
This shows that is not an algebraic integer:
This gives the smallest positive integer for which is an algebraic integer:

The trace of an algebraic number a is the sum of all roots of MinimalPolynomial[a].

This gives the trace of :

The norm of an algebraic number a is the product of all roots of MinimalPolynomial[a].

This gives the norm of :

An algebraic number is an algebraic unit if and only if both and are algebraic integers, or equivalently, if and only if AlgebraicNumberNorm[a] is or .

This shows that GoldenRatio is an algebraic unit:
This shows that AlgebraicNumber[Root[#13-4#1+17&,1],{1,2,3}] is not an algebraic unit:

An algebraic number is a root of unity if and only if for some integer .

This shows that is a root of unity:
MinimalPolynomial[s,x,Extension->a]
give the characteristic polynomial of the algebraic number s over the field
MinimalPolynomial[s,x,Extension->Automatic]
give the characteristic polynomial of the AlgebraicNumber object s over the number field generated by its first argument
AlgebraicNumberTrace[a,Extension->θ]
give the trace of the algebraic number a over the field
AlgebraicNumberTrace[a,Extension->Automatic]
give the trace of the AlgebraicNumber object a over the number field generated by its first argument
AlgebraicNumberNorm[a,Extension->θ]
give the norm of the algebraic number a over the field
AlgebraicNumberNorm[a,Extension->Automatic]
give the norm of the AlgebraicNumber object a over the number field generated by its first argument

Functions for computing properties of elements of algebraic number fields.

If a is AlgebraicNumber[θ,coeffs], then MinimalPolynomial[a,x,Extension->Automatic] is equal to MinimalPolynomial[a,x]d, where d is the extension degree of .

The characteristic polynomial of , represented as an element of an extension of rationals of degree 4, is the square of MinimalPolynomial of :

The trace of an algebraic number is the sum of all roots of its characteristic polynomial. If a is AlgebraicNumber[θ,coeffs], then AlgebraicNumberTrace[a,Extension->Automatic] is equal to d AlgebraicNumberTrace[a], where d is the extension degree of .

The trace of , represented as an element of an extension of rationals of degree 4, is twice the AlgebraicNumberTrace of :

The norm of an algebraic number is the product of all roots of its characteristic polynomial. If a is AlgebraicNumber[θ,coeffs], then AlgebraicNumberNorm[a,Extension->Automatic] is equal to AlgebraicNumberNorm[a]d, where d is the extension degree of .

The norm of , represented as an element of an extension of rationals of degree 4, is the square of AlgebraicNumberNorm of :
NumberFieldIntegralBasis[a]give an integral basis for the field generated by the algebraic number a
NumberFieldRootsOfUnity[a]give the roots of unity for the field generated by the algebraic number a
NumberFieldFundamentalUnits[a]give a list of fundamental units for the field generated by the algebraic number a
NumberFieldNormRepresentatives[a,m]
give a list of representatives of classes of algebraic integers of norm ±m in the field generated by the algebraic number a
NumberFieldSignature[a]give the signature of the field generated by the algebraic number a
NumberFieldDiscriminant[a]give the discriminant of the field generated by the algebraic number a
NumberFieldRegulator[a]give the regulator of the field generated by the algebraic number a
NumberFieldClassNumber[a]give the class number of a number field generated by an algebraic number a

Functions of computing properties of algebraic number fields.

An integral basis of an algebraic number field is a list of algebraic numbers forming a basis of the module of the algebraic integers of . The set is an integral basis of an algebraic number field if and only if are algebraic integers, and every algebraic integer can be uniquely represented as

with integer coefficients .

Here is an integral basis of :
This gives an integral basis of the field generated by the first root of 533+429 #1+18 #12+#13&:
NumberFieldIntegralBasis allows specifying the number field by giving a polynomial and a root number:
This gives the roots of unity in the field generated by Root[9-2 #2+#4&,4]:
Here are all roots of unity in the field :

is a list of fundamental units of an algebraic number field if and only if are algebraic units, and every algebraic unit can be uniquely represented as

with a root of unity and integer exponents .

Here is a set of fundamental units of the field generated by the third root of #14-10 #12+1&:
This gives a fundamental unit of the quadratic field :
This gives a set of representatives of classes of elements of norm 9 in the field generated by the first root of #12-7&:
Here is a set of representatives of classes of elements of norm 2 in the field :
This shows that the polynomial #5+#4+#3+#2+1& has 1 real root and 2 conjugate pairs of complex roots:
This shows that the field has 12 real embeddings and 6 conjugate pairs of complex embeddings:

The discriminant of a number field is the discriminant of an integral basis of (i.e. the determinant of the matrix with elements AlgebraicNumberTrace[ai aj,Extension->Automatic]). The value of the determinant does not depend on the choice of integral basis.

Here is the discriminant of :
This gives the discriminant of the field generated by a root of the polynomial #5+#4+#3+#2+1&. The value of the discriminant does not depend on the choice of the root; hence, NumberFieldDiscriminant allows specifying just the polynomial:

The regulator of a number field is the lattice volume of the image of the group of units of under the logarithmic embedding

where , , are the real embeddings of in , and , , are one of each conjugate pair of the complex embeddings of in .

Here is the regulator of :
This gives the regulator of the field generated by a root of the polynomial #13-3 #12+1&. The value of the regulator does not depend on the choice of the root; hence, NumberFieldRegulator allows specifying just the polynomial:
This gives the class number of