Theorems · Theorem · field theory
Polynomial.induction_with_natDegree_le
∀ {R : Type u_1} [inst : Semiring R] (motive : Polynomial R → Prop) (N : ℕ),
motive 0 →
(∀ (n : ℕ) (r : R), r ≠ 0 → n ≤ N → motive (Polynomial.C r * Polynomial.X ^ n)) →
(∀ (f g : Polynomial R), f.natDegree < g.natDegree → g.natDegree ≤ N → motive f → motive g → motive (f + g)) →
∀ (f : Polynomial R), f.natDegree ≤ N → motive fAn induction lemma for polynomials. It takes a natural number N as a parameter, that is
required to be at least as big as the natDegree of the polynomial. This is useful to prove
results where you want to change each term in a polynomial to something else depending on the
natDegree of the polynomial itself and not on the specific natDegree of each term.
- Defined in
- Mathlib.Algebra.Polynomial.EraseLead
- Cited by
- 4 results in Mathlib
- Foundations
- Depth 105 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.
Cites26
Mathlib declarations this one mentions in its statement or cites explicitly in its proof. Plumbing is filtered out.
- DFunLike.coestatement and proof · cited by 62,936
- Semiringstatement and proof · cited by 13,802
- RingHomstatement · cited by 10,189
- Polynomialstatement and proof · cited by 5,681
- LE.le.transproof · cited by 3,151
- zero_addproof · cited by 2,366
- Finset.cardproof · cited by 2,327
- Polynomial.Xstatement and proof · cited by 1,639
- Polynomial.Cstatement and proof · cited by 1,598
- Polynomial.natDegreestatement and proof · cited by 1,105
- LT.lt.trans_leproof · cited by 678
- Polynomial.leadingCoeffproof · cited by 498
Cited by4
Results whose statement or proof uses this declaration.
- Polynomial.eval₂_reflect_mul_powproof · cited by 3
- Polynomial.mono_map_natDegree_eqproof · cited by 1
- Polynomial.eval₂_homogenize_of_eq_oneproof · cited by 1
- denomsClearable_of_natDegree_leproof · cited by 1