Mathlib Map

Theorems · Theorem · field theory

Polynomial.degree_pos_induction_on

∀ {R : Type u} [inst : Semiring R] {P : Polynomial R → Prop} (p : Polynomial R),
  0 < p.degree →
    (∀ {a : R}, a ≠ 0 → P (Polynomial.C a * Polynomial.X)) →
      (∀ {p : Polynomial R}, 0 < p.degree → P p → P (p * Polynomial.X)) →
        (∀ {p : Polynomial R} {a : R}, 0 < p.degree → P p → P (p + Polynomial.C a)) → P p

A property holds for all polynomials of positive degree with coefficients in a semiring R if it holds for * a * X, with a ∈ R, * p * X, with p ∈ R[X], * p + a, with a ∈ R, p ∈ R[X], with appropriate restrictions on each term. See natDegree_ne_zero_induction_on for a similar statement involving no explicit multiplication.

Defined in
Mathlib.Algebra.Polynomial.Inductions
Cited by
1 results in Mathlib
Foundations
Depth 116 from the axioms · uses propext, Classical.choice, Quot.sound
Assumes
Semiring

Around this declaration

Dashed lines are statement dependencies; solid lines are citations in proofs.

Cites20

Mathlib declarations this one mentions in its statement or cites explicitly in its proof. Plumbing is filtered out.

Cited by1

Results whose statement or proof uses this declaration.