Separable degree #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
This file contains basics about the separable degree of a polynomial.
Main results #
is_separable_contraction
: is the condition that, forg
a separable polynomial, we have thatg(x^(q^m)) = f(x)
for somem : ℕ
.has_separable_contraction
: the condition of having a separable contractionhas_separable_contraction.degree
: the separable degree, defined as the degree of some separable contractionirreducible.has_separable_contraction
: any irreducible polynomial can be contracted to a separable polynomialhas_separable_contraction.dvd_degree'
: the degree of a separable contraction divides the degree, in function of the exponential characteristic of the fieldhas_separable_contraction.dvd_degree
andhas_separable_contraction.eq_degree
specialize the statement ofseparable_degree_dvd_degree
is_separable_contraction.degree_eq
: the separable degree is well-defined, implemented as the statement that the degree of any separable contraction equalshas_separable_contraction.degree
Tags #
separable degree, degree, polynomial
A separable contraction of a polynomial f
is a separable polynomial g
such that
g(x^(q^m)) = f(x)
for some m : ℕ
.
The condition of having a separable contration.
Equations
- polynomial.has_separable_contraction q f = ∃ (g : polynomial F), polynomial.is_separable_contraction q f g
A choice of a separable contraction.
Equations
- hf.contraction = classical.some hf
The separable degree of a polynomial is the degree of a given separable contraction.
Equations
- hf.degree = hf.contraction.nat_degree
The separable degree divides the degree, in function of the exponential characteristic of F.
The separable degree divides the degree.
In exponential characteristic one, the separable degree equals the degree.
Every irreducible polynomial can be contracted to a separable polynomial. https://stacks.math.columbia.edu/tag/09H0
If two expansions (along the positive characteristic) of two separable polynomials g
and g'
agree, then they have the same degree.
The separable degree equals the degree of any separable contraction, i.e., it is unique.