Documentation

Mathlib.NumberTheory.FunctionField

Function fields #

This file defines a function field and the ring of integers corresponding to it.

Main definitions #

Implementation notes #

The definitions that involve a field of fractions choose a canonical field of fractions, but are independent of that choice. We also omit assumptions like Finite Fq or IsScalarTower Fq[X] (FractionRing Fq[X]) F in definitions, adding them back in lemmas when they are needed.

References #

Tags #

function field, ring of integers

@[reducible, inline]
abbrev FunctionField (Fq : Type u_1) (F : Type u_2) [Field Fq] [Field F] [Algebra (RatFunc Fq) F] :

F is a function field over the finite field Fq if it is a finite extension of the field of rational functions in one variable over Fq.

Note that F can be a function field over multiple, non-isomorphic, Fq.

Equations
theorem functionField_iff (Fq : Type u_1) (F : Type u_2) [Field Fq] [Field F] (Fqt : Type u_3) [Field Fqt] [Algebra (Polynomial Fq) Fqt] [IsFractionRing (Polynomial Fq) Fqt] [Algebra (RatFunc Fq) F] [Algebra Fqt F] [Algebra (Polynomial Fq) F] [IsScalarTower (Polynomial Fq) Fqt F] [IsScalarTower (Polynomial Fq) (RatFunc Fq) F] :

F is a function field over Fq iff it is a finite extension of Fq(t).

@[deprecated FunctionField.algebraMap_injective (since := "2025-03-03")]
theorem algebraMap_injective (Fq : Type u_1) (F : Type u_2) [Field Fq] [Field F] [Algebra (Polynomial Fq) F] [Algebra (RatFunc Fq) F] [IsScalarTower (Polynomial Fq) (RatFunc Fq) F] :

Alias of FunctionField.algebraMap_injective.

def FunctionField.ringOfIntegers (Fq : Type u_1) (F : Type u_2) [Field Fq] [Field F] [Algebra (Polynomial Fq) F] :

The function field analogue of NumberField.ringOfIntegers: FunctionField.ringOfIntegers Fq Fqt F is the integral closure of Fq[t] in F.

We don't actually assume F is a function field over Fq in the definition, only when proving its properties.

Equations

The place at infinity on Fq(t) #

The valuation at infinity is the nonarchimedean valuation on Fq(t) with uniformizer 1/t. Explicitly, if f/g ∈ Fq(t) is a nonzero quotient of polynomials, its valuation at infinity is Multiplicative.ofAdd(degree(f) - degree(g)).

Equations

The valuation at infinity on Fq(t).

Equations

The valued field Fq(t) with the valuation at infinity.

Equations
def FunctionField.FqtInfty (Fq : Type u_1) [Field Fq] [DecidableEq (RatFunc Fq)] :
Type u_1

The completion Fq((t⁻¹)) of Fq(t) with respect to the valuation at infinity.

Equations

The valuation at infinity on k(t) extends to a valuation on FqtInfty.

Equations