Introduction

Nemo allows the creation of fraction fields over any ring . We don't require to be an integral domain, however no attempt is made to deal with the general case. Two fractions and are equal in Nemo iff . Thus, in practice, a greatest common divisor function is currently required for the ring .

In order to make the representation unique for printing, we have a notion of canonical unit for elements of a ring . When canonicalising , each of the elements and is first divided by the canonical unit of .

The canonical_unit function is defined for elements of every Nemo ring. It must have the properties

canonical_unit(u) == u
canonical_unit(a*b) == canonical_unit(a)*canonical_unit(b)

for any unit of the ring in question, and and arbitrary elements of the ring.

For example, the canonical unit of an integer is its sign. Thus a fraction of integers always has positive denominator after canonicalisation.

The canonical unit of a polynomial is the canonical unit of its leading coefficient, etc.

There are two different kinds of implementation of fraction fields in Nemo: a generic one for the case where no specific implementation exists, and efficient implementations of fractions over specific rings, usually provided by C/C++ libraries.

The following table shows each of the fraction types available in Nemo, the base ring , and the Julia/Nemo types for that kind of fraction (the type information is mainly of concern to developers).

Base ring Library Element type Parent type
Generic ring Nemo GenFrac{T} GenFracField{T}
Flint fmpq FlintRationalField

All fraction element types belong to the abstract type FracElem and all of the fraction field types belong to the abstract type FracField. This enables one to write generic functions that can accept any Nemo fraction type.

Fraction field constructors

In order to construct fractions in Nemo, one must first construct the fraction field itself. This can be accomplished manually with the following constructor.

FractionField(::Ring, ::Bool)

Note: it is also possible to construct fractions directly in Nemo without manually constructing the fraction field. In such cases, Nemo creates the relevant fraction field internally.

For convenience, the rational fraction field is constructed automatically in Nemo. We have the definition

QQ = FractionField(ZZ)

Here are some examples of creating fraction fields and making use of the resulting parent objects to coerce various elements into those fields.

R = FractionField(ZZ)
S, x = PolynomialRing(ZZ, "x")
T = FractionField(S)

a = R(1)
b = T(fmpz(3))
c = T(x)
d = QQ(11)

Fraction constructors

Once a fraction field is constructed, there are various ways to construct fractions in that field.

Apart from coercing elements into the fraction field as above, we offer the following functions.

# Base.zeroMethod.

zero(R::FracField)

Return in the given fraction field.

source

# Base.oneMethod.

one(R::FracField)

Return in the given fraction field.

source

It is also possible to construct fractions directly in Nemo, without first manually constructing the relevant fraction field. For this purpose we overload Julia's fraction operator //.

Here are some examples of constructing fractions.

S, x = PolynomialRing(ZZ, "x")
T = FractionField(S)

a = zero(T)
b = one(T)
c = (x + 3)//(x^2 + 2)

Basic functionality

All fraction field modules in Nemo must provide the functionality listed in this section. (Note that only some of these functions are useful to a user.)

Developers who are writing their own fraction field module, whether as an interface to a C library, or as some kind of generic module, must provide all of these functions for custom fraction field types in Nemo.

We write U for the type of fraction elements in the fraction field and T for the type of elements of the base ring.

All of these functions are provided for all existing fraction types in Nemo.

parent_type{U <: FracElem}(::Type{U})

Given the type of fraction elements, should return the type of the corresponding parent object.

elem_type(R::FracField)

Given a parent object for the fraction field, return the type of elements of the fraction field.

Base.hash(a::FracElem, h::UInt)

Return a UInt hexadecimal hash of the fraction . This should be xor'd with a fixed random hexadecimal specific to the fraction type. The hash of the numerator and denominator of a fraction should be xor'd with the supplied parameter h as part of computing the hash.

num(a::FracElem)

Return the numerator of the given fraction element, i.e. for return . The returned numerator will be divided by the canonical unit of the denominator.

den(a::FracElem)

Return the denominator of the given fraction element, i.e. for return . The returned denominator will be divided by the canonical unit of the denominator.

deepcopy(a::FracElem)

Construct a copy of the given fraction and return it. This function must recursively construct copies of all of the internal data in the given fraction. Nemo fractions are mutable and so returning shallow copies is not sufficient.

mul!(c::FracElem, a::FracElem, b::FracElem)

Multiply by and set the existing fraction to the result. This function is provided for performance reasons as it saves allocating a new object for the result and eliminates associated garbage collection.

addeq!(c::FracElem, a::FracElem)

In-place addition. Adds to and sets to the result. This function is provided for performance reasons as it saves allocating a new object for the result and eliminates associated garbage collection.

Given a parent object S for a fraction field, the following coercion functions are provided to coerce various elements into the fraction field. Developers provide these by overloading the call operator for the fraction field parent objects.

S()

Coerce zero into the field .

S(n::Integer)
S(n::fmpz)

Coerce an integer value or Flint integer into the fraction field .

S(n::T)

Coerces an element of the base ring, of type T into .

S(f::FracElem)

Take a fraction that is already in the field and simply return it. A copy of the original is not made.

S(c::RingElem)

Try to coerce the given ring element into the fraction field. This only succeeds if can be coerced into the base ring.

There are also the followin constructors for creatinf fracions from a numerator and denominator.

S(n::T, d::T)
S(n::Integer, d::T)
S(n::T, d::Integer)

Create the fraction in the fraction field .

In addition to the above, developers of custom fractions must ensure the parent object of a fraction type constains a field base_ring specifying the base ring. They must also ensure that each fraction element contains a field parent specifying the parent object of the fraction.

Typically a developer will also overload the FractionField generic function to create fractions of the custom type they are implementing.

Basic manipulation

Numerous functions are provided to manipulate fractions. Also see the section on basic functionality above.

# Nemo.base_ringMethod.

base_ring{T}(S::FracField{T})

Return the base ring of the given fraction field.

source

# Nemo.base_ringMethod.

base_ring{T}(r::FracElem)

Return the base ring of the fraction field that the supplied element belongs to.

source

# Base.parentMethod.

parent(a::FracElem)

Return the parent object of the given fraction element.

source

# Nemo.iszeroMethod.

iszero(a::FracElem)

Return true if the supplied element is zero in the fraction field it belongs to, otherwise return false.

source

# Nemo.isoneMethod.

isone(a::FracElem)

Return true if the supplied element is one in the fraction field it belongs to, otherwise return false.

source

# Nemo.isunitMethod.

isunit(a::FracElem)

Return true if the supplied element is invertible in the fraction field it belongs to, i.e. the numerator is nonzero, otherwise return false.

source

Some functions are only available for certain rings.

# Base.absMethod.

abs(a::fmpq)

Return the absolute value of .

source

# Nemo.heightMethod.

height(a::fmpq)

Return the height of the fraction , namely the largest of the absolute values of the numerator and denominator.

source

# Nemo.height_bitsMethod.

height_bits(a::fmpq)

Return the number of bits of the height of the fraction .

source

# Base.:<<Method.

<<(a::fmpq, b::Int)

Return .

source

Base.:>>Method.

<<(a::fmpq, b::Int)

Return .

source

Rational fractions can be compared with each other and with integers. Julia provides the full range of operators which depend on the following functions.

# Base.islessMethod.

isless(a::fmpq, b::fmpq)

Return true if , otherwise return false.

source

# Base.islessMethod.

isless(a::Integer, b::fmpq)

Return true if , otherwise return false.

source

# Base.islessMethod.

isless(a::fmpq, b::Integer)

Return true if , otherwise return false.

source

# Base.islessMethod.

isless(a::fmpq, b::fmpz)

Return true if , otherwise return false.

source

# Base.islessMethod.

isless(a::fmpz, b::fmpq)

Return true if , otherwise return false.

source

Here are some examples of basic manipulation of fractions.

S, x = PolynomialRing(ZZ, "x")

f = zero(S)
g = one(S)

a = isunit((x + 1)//(-x^2 + 1))
b = iszero(f)
c = isone(g)
d = abs(ZZ(11)//3)
U = base_ring(S)
V = base_ring((x + 1)//(-x^2 + 1))
W = parent(S(x))
4 <= ZZ(7)//ZZ(3)

Arithmetic operators

All the usual arithmetic operators are overloaded for Nemo fractions. Note that Julia uses the single slash for floating point division. Therefore to perform exact division in a ring we use divexact. To construct an element of a fraction field one can use the double slash operator //.

The following operators and functions are provided.

Function Operation
-(a::FracElem) unary minus
+{T <: RingElem}(a::FracElem{T}, b::FracElem{T}) addition
-{T <: RingElem}(a::FracElem{T}, b::FracElem{T}) subtraction
*{T <: RingElem}(a::FracElem{T}, b::FracElem{T}) multiplication
divexact{T <: RingElem}(a::FracElem{T}, b::FracElem{T}) exact division

The following ad hoc operators are also provided.

Function Operation
+(a::Integer, b::FracElem) addition
+(a::FracElem, b::Integer) addition
+(a::fmpz, b::FracElem) addition
+(a::FracElem, b::fmpz) addition
+{T <: RingElem}(a::T, b::FracElem{T}) addition
+{T <: RingElem}(a::FracElem{T}, b::T) addition
-(a::Integer, b::FracElem) subtraction
-(a::FracElem, b::Integer) subtraction
-(a::fmpz, b::FracElem) subtraction
-(a::FracElem, b::fmpz) subtraction
-{T <: RingElem}(a::T, b::FracElem{T}) subtraction
-{T <: RingElem}(a::FracElem{T}, b::T) subtraction
*(a::Integer, b::FracElem) multiplication
*(a::FracElem, b::Integer) multiplication
*(a::fmpz, b::FracElem) multiplication
*(a::FracElem, b::fmpz) multiplication
*{T <: RingElem}(a::T, b::FracElem{T}) multiplication
*{T <: RingElem}(a::FracElem{T}, b::T) multiplication
divexact(a::Integer, b::FracElem) exact division
divexact(a::FracElem, b::Integer) exact division
divexact(a::fmpz, b::FracElem) exact division
divexact(a::FracElem, b::fmpz) exact division
divexact{T <: RingElem}(a::T, b::FracElem{T}) exact division
divexact{T <: RingElem}(a::FracElem{T}, b::T) exact division
^(a::FracElem, n::Int) powering

If the appropriate promote_rule and coercion exists, these operators can also be used with elements of other rings. Nemo will try to coerce the operands to the dominating type and then apply the operator.

Here are some examples of arithmetic operations on fractions.

S, x = PolynomialRing(ZZ, "x")

a = -((x + 1)//(-x^2 + 1))
b = -(x + 3)//(x + 1) + (2x + 3)//(x^2 + 4)
c = (x + 1)//(-x^2 + 1) - x//(2x + 1)
d = ((x^2 + 3x)//(5x))*((x + 1)//(2x^2 + 2))
f = a + 2
g = 3 - a
h = b*(x + 1)
k = divexact(a, b)
m = divexact(a, x + 1)
n = divexact(b, 23)
p = divexact(ZZ(2), b)
q = a^3

Remove and valuation

In case the base ring supports the functions remove and valuation, the same is true for fractions.

remove{T <: RingElem}(::T, ::T)
valuation{T <: RingElem}(::T, ::T)

Here is an example:

a = QQ(2, 3)
b = ZZ(3)
remove(a, b)
valuation(a, b)

Comparison operators

The following comparison operators are implemented for fractions in Nemo. Julia provides the corresponding != operator automatically.

Function

isequal{T <: RingElem}(a::FracElem{T}, b::FracElem{T}) =={T <: RingElem}(a::FracElem{T}, b::FracElem{T})

The isequal operation returns true if and only if numerator and denominator of the fraction are precisely equal as compared by isequal. This is a stronger form of equality, used for comparing inexact ring elements, such as elements of a power series ring, the -adics, or the reals or complex numbers. Two elements are precisely equal only if they have the same precision or bounds in addition to being arithmetically equal.

In addition we have the following ad hoc comparison operators.

Function

=={T <: RingElem}(a::FracElem{T}, b::T) =={T <: RingElem}(a::T, b::FracElem{T}) ==(a::FracElem, b::Integer) ==(a::Integer, b::FracElem) ==(a::FracElem, b::fmpz) ==(a::fmpz, b::FracElem)

Here are some examples of comparisons.

S, x = PolynomialRing(ZZ, "x")

a = -(ZZ(4)//ZZ(6))
b = -((x + 1)//(-x^2 + 1))

a == -ZZ(2)//ZZ(3)
b == 1//(x - 1)
a == 4
ZZ(2) == b
b == x + 1

Inversion

# Base.invMethod.

inv(a::FracElem)

Return the inverse of the fraction .

source

Here are some examples of computing inverses.

S, x = PolynomialRing(ZZ, "x")

a = (x + 1)//(-x^2 + 1)

b = inv(a)

Greatest common divisor

# Base.gcdMethod.

gcd{T <: RingElem}(a::FracElem{T}, b::FracElem{T})

Return a greatest common divisor of and if one exists. N.B: we define the GCD of and to be gcd, reduced to lowest terms. This requires the existence of a greatest common divisor function for the base ring.

source

Here are some examples of computing a greatest common divisor.

S, x = PolynomialRing(ZZ, "x")

a = -x//(2x + 1)

f = gcd(a, (x + 1)//(x - 1))

Modular arithmetic

The following functions are available for rationals.

# Base.modMethod.

mod(a::fmpq, b::fmpz)

Return where is an integer coprime to the denominator of .

source

# Base.modMethod.

mod(a::fmpq, b::Integer)

Return where is an integer coprime to the denominator of .

source

Here are some examples of modular arithmetic.

a = -fmpz(2)//3
b = fmpz(1)//2

c = mod(a, 7)
d = mod(b, fmpz(5))

Rational Reconstruction

Rational reconstruction is available for rational numbers.

# Nemo.reconstructMethod.

reconstruct(a::fmpz, b::fmpz)

Attempt to find a rational number such that and such that gcd and . If no solution exists, an exception is thrown.

source

# Nemo.reconstructMethod.

reconstruct(a::fmpz, b::Integer)

Attempt to find a rational number such that and such that gcd and . If no solution exists, an exception is thrown.

source

# Nemo.reconstructMethod.

reconstruct(a::Integer, b::fmpz)

Attempt to find a rational number such that and such that gcd and . If no solution exists, an exception is thrown.

source

# Nemo.reconstructMethod.

reconstruct(a::Integer, b::Integer)

Attempt to find a rational number such that and such that gcd and . If no solution exists, an exception is thrown.

source

Here are some examples of rational reconstruction.

a = reconstruct(7, 13)
b = reconstruct(fmpz(15), 31)
c = reconstruct(fmpz(123), fmpz(237))

Rational enumeration

Various methods exist to enumerator rationals.

# Nemo.next_minimalMethod.

next_minimal(a::fmpq)

Given , returns the next rational number in the sequence obtained by enumerating all positive denominators , and for each enumerating the numerators in order and generating both and , but skipping all gcd. Starting with zero, this generates every nonnegative rational number once and only once, with the first few entries being . This enumeration produces the rational numbers in order of minimal height. It has the disadvantage of being somewhat slower to compute than the Calkin-Wilf enumeration. If we throw a DomainError().

source

# Nemo.next_signed_minimalMethod.

next_signed_minimal(a::fmpq)

Given a signed rational number assumed to be in canonical form, returns the next element in the minimal-height sequence generated by next_minimal but with negative numbers interleaved. The sequence begins . Starting with zero, this generates every rational number once and only once, in order of minimal height.

source

# Nemo.next_calkin_wilfMethod.

next_calkin_wilf(a::fmpq)

Given return the next number in the breadth-first traversal of the Calkin-Wilf tree. Starting with zero, this generates every nonnegative rational number once and only once, with the first few entries being . Despite the appearance of the initial entries, the Calkin-Wilf enumeration does not produce the rational numbers in order of height: some small fractions will appear late in the sequence. This order has the advantage of being faster to produce than the minimal-height order.

source

# Nemo.next_signed_calkin_wilfMethod.

next_signed_calkin_wilf(a::fmpq)

Given a signed rational number returns the next element in the Calkin-Wilf sequence with negative numbers interleaved. The sequence begins . Starting with zero, this generates every rational number once and only once, but not in order of minimal height.

source

Here are some examples of rational enumeration.

next_minimal(fmpz(2)//3)
next_signed_minimal(-fmpz(21)//31)
next_calkin_wilf(fmpz(321)//113)
next_signed_calkin_wilf(-fmpz(51)//(17))

Special functions

The following special functions are available for specific rings in Nemo.

# Nemo.harmonicMethod.

harmonic(n::Int)

Computes the harmonic number . Table lookup is used for whose numerator and denominator fit in a single limb. For larger , a divide and conquer strategy is used.

source

# Nemo.bernoulliMethod.

bernoulli(n::Int)

Computes the Bernoulli number for nonnegative .

source

# Nemo.bernoulli_cacheMethod.

bernoulli_cache(n::Int)

Precomputes and caches all the Bernoulli numbers up to . This is much faster than repeatedly calling bernoulli(k). Once cached, subsequent calls to bernoulli(k) for any will read from the cache, making them virtually free.

source

# Nemo.dedekind_sumMethod.

dedekind_sum(h::fmpz, k::fmpz)

source

# Nemo.dedekind_sumMethod.

dedekind_sum(h::fmpz, k::Integer)

Computes the Dedekind sum for arbitrary and .

source

# Nemo.dedekind_sumMethod.

dedekind_sum(h::Integer, k::fmpz)

Computes the Dedekind sum for arbitrary and .

source

# Nemo.dedekind_sumMethod.

dedekind_sum(h::Integer, k::Integer)

Computes the Dedekind sum for arbitrary and .

source

Here are some examples of special functions.

a = harmonic(12)

b = dedekind_sum(12, 13)
c = dedekind_sum(-120, fmpz(1305))

d = bernoulli(12)

bernoulli_cache(100)
e = bernoulli(100)