Trailing degree of univariate polynomials #
Main definitions #
trailingDegree p
: the multiplicity ofX
in the polynomialp
natTrailingDegree
: a variant oftrailingDegree
that takes values in the natural numberstrailingCoeff
: the coefficient at indexnatTrailingDegree p
Converts most results about degree
, natDegree
and leadingCoeff
to results about the bottom
end of a polynomial
trailingDegree p
is the multiplicity of x
in the polynomial p
, i.e. the smallest
X
-exponent in p
.
trailingDegree p = some n
when p ≠ 0
and n
is the smallest power of X
that appears
in p
, otherwise
trailingDegree 0 = ⊤
.
Instances For
natTrailingDegree p
forces trailingDegree p
to ℕ
, by defining
natTrailingDegree ⊤ = 0
.
Instances For
trailingCoeff p
gives the coefficient of the smallest power of X
in p
Instances For
a polynomial is monic_at
if its trailing coefficient is 1
Instances For
instance
Polynomial.TrailingMonic.decidable
{R : Type u}
[Semiring R]
{p : Polynomial R}
[DecidableEq R]
:
@[simp]
theorem
Polynomial.TrailingMonic.trailingCoeff
{R : Type u}
[Semiring R]
{p : Polynomial R}
(hp : p.TrailingMonic)
:
@[simp]
@[simp]
theorem
Polynomial.trailingDegree_eq_natTrailingDegree
{R : Type u}
[Semiring R]
{p : Polynomial R}
(hp : p ≠ 0)
:
theorem
Polynomial.trailingDegree_le_of_ne_zero
{R : Type u}
{n : ℕ}
[Semiring R]
{p : Polynomial R}
(h : p.coeff n ≠ 0)
:
theorem
Polynomial.natTrailingDegree_le_of_ne_zero
{R : Type u}
{n : ℕ}
[Semiring R]
{p : Polynomial R}
(h : p.coeff n ≠ 0)
:
@[simp]
@[simp]
theorem
Polynomial.natTrailingDegree_le_of_trailingDegree_le
{R : Type u}
[Semiring R]
{p : Polynomial R}
{n : ℕ}
{hp : p ≠ 0}
(H : ↑n ≤ p.trailingDegree)
:
@[simp]
@[simp]
@[simp]
theorem
Polynomial.coeff_eq_zero_of_lt_trailingDegree
{R : Type u}
{n : ℕ}
[Semiring R]
{p : Polynomial R}
(h : ↑n < p.trailingDegree)
:
theorem
Polynomial.coeff_eq_zero_of_lt_natTrailingDegree
{R : Type u}
[Semiring R]
{p : Polynomial R}
{n : ℕ}
(h : n < p.natTrailingDegree)
:
@[simp]
theorem
Polynomial.natTrailingDegree_le_of_mem_supp
{R : Type u}
[Semiring R]
{p : Polynomial R}
(a : ℕ)
:
theorem
Polynomial.natTrailingDegree_eq_support_min'
{R : Type u}
[Semiring R]
{p : Polynomial R}
(h : p ≠ 0)
:
theorem
Polynomial.le_natTrailingDegree
{R : Type u}
{n : ℕ}
[Semiring R]
{p : Polynomial R}
(hp : p ≠ 0)
(hn : ∀ m < n, p.coeff m = 0)
:
theorem
Polynomial.natTrailingDegree_mul_X_pow
{R : Type u}
[Semiring R]
{p : Polynomial R}
(hp : p ≠ 0)
(n : ℕ)
:
theorem
Polynomial.le_natTrailingDegree_mul
{R : Type u}
[Semiring R]
{p q : Polynomial R}
(h : p * q ≠ 0)
:
theorem
Polynomial.natTrailingDegree_mul
{R : Type u}
[Semiring R]
{p q : Polynomial R}
[NoZeroDivisors R]
(hp : p ≠ 0)
(hq : q ≠ 0)
:
@[simp]
@[simp]
@[simp]
@[simp]
@[simp]
@[simp]
@[simp]
The second-lowest coefficient, or 0 for constants
Instances For
@[simp]
theorem
Polynomial.ne_zero_of_trailingDegree_lt
{R : Type u}
[Semiring R]
{p : Polynomial R}
{n : ℕ∞}
(h : p.trailingDegree < n)
:
theorem
Polynomial.Monic.eq_X_pow_iff_natDegree_le_natTrailingDegree
{R : Type u}
[Semiring R]
{p : Polynomial R}
(h₁ : p.Monic)
: