Separable degree #
This file contains basics about the separable degree of a polynomial.
Main results #
IsSeparableContraction
: is the condition that, forg
a separable polynomial, we have thatg(x^(q^m)) = f(x)
for somem : ℕ
.HasSeparableContraction
: the condition of having a separable contractionHasSeparableContraction.degree
: the separable degree, defined as the degree of some separable contractionIrreducible.hasSeparableContraction
: any irreducible polynomial can be contracted to a separable polynomialHasSeparableContraction.dvd_degree'
: the degree of a separable contraction divides the degree, in function of the exponential characteristic of the fieldHasSeparableContraction.dvd_degree
andHasSeparableContraction.eq_degree
specialize the statement ofseparable_degree_dvd_degree
IsSeparableContraction.degree_eq
: the separable degree is well-defined, implemented as the statement that the degree of any separable contraction equalsHasSeparableContraction.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 : ℕ
.
Equations
- Polynomial.IsSeparableContraction q f g = (g.Separable ∧ ∃ (m : ℕ), (Polynomial.expand F (q ^ m)) g = f)
Instances For
The condition of having a separable contraction.
Equations
- Polynomial.HasSeparableContraction q f = ∃ (g : Polynomial F), Polynomial.IsSeparableContraction q f g
Instances For
A choice of a separable contraction.
Equations
- hf.contraction = Classical.choose hf
Instances For
The separable degree of a polynomial is the degree of a given separable contraction.
Equations
- hf.degree = hf.contraction.natDegree
Instances For
The HasSeparableContraction.contraction
is indeed a separable contraction.
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.