Documentation

Mathlib.Algebra.Polynomial.Eval.Degree

Evaluation of polynomials and degrees #

This file contains results on the interaction of Polynomial.eval and Polynomial.degree.

theorem Polynomial.eval₂_eq_sum_range {R : Type u} {S : Type v} [Semiring R] {p : Polynomial R} [Semiring S] (f : R →+* S) (x : S) :
eval₂ f x p = iFinset.range (p.natDegree + 1), f (p.coeff i) * x ^ i
theorem Polynomial.eval₂_eq_sum_range' {R : Type u} {S : Type v} [Semiring R] [Semiring S] (f : R →+* S) {p : Polynomial R} {n : } (hn : p.natDegree < n) (x : S) :
eval₂ f x p = iFinset.range n, f (p.coeff i) * x ^ i
theorem Polynomial.eval_eq_sum_range {R : Type u} [Semiring R] {p : Polynomial R} (x : R) :
eval x p = iFinset.range (p.natDegree + 1), p.coeff i * x ^ i
theorem Polynomial.eval_eq_sum_range' {R : Type u} [Semiring R] {p : Polynomial R} {n : } (hn : p.natDegree < n) (x : R) :
eval x p = iFinset.range n, p.coeff i * x ^ i
theorem Polynomial.eval_monomial_one_add_sub {S : Type v} [CommRing S] (d : ) (y : S) :
eval (1 + y) ((monomial d) (d + 1)) - eval y ((monomial d) (d + 1)) = x_1Finset.range (d + 1), ((d + 1).choose x_1) * (x_1 * y ^ (x_1 - 1))

A reformulation of the expansion of (1 + y)^d: $$(d + 1) (1 + y)^d - (d + 1)y^d = \sum_{i = 0}^d {d + 1 \choose i} \cdot i \cdot y^{i - 1}.$$

@[simp]
theorem Polynomial.comp_C_mul_X_coeff {R : Type u} [Semiring R] {p : Polynomial R} {r : R} {n : } :

If R and S are isomorphic, then so are their polynomial rings.

Equations
Instances For
    @[simp]
    theorem Polynomial.mapEquiv_symm_apply {R : Type u} {S : Type v} [Semiring R] [Semiring S] (e : R ≃+* S) (a : Polynomial S) :
    (mapEquiv e).symm a = map (↑e.symm) a
    @[simp]
    theorem Polynomial.mapEquiv_apply {R : Type u} {S : Type v} [Semiring R] [Semiring S] (e : R ≃+* S) (a : Polynomial R) :
    (mapEquiv e) a = map (↑e) a
    theorem Polynomial.map_monic_eq_zero_iff {R : Type u} {S : Type v} [Semiring R] [Semiring S] {f : R →+* S} {p : Polynomial R} (hp : p.Monic) :
    map f p = 0 ∀ (x : R), f x = 0
    theorem Polynomial.map_monic_ne_zero {R : Type u} {S : Type v} [Semiring R] [Semiring S] {f : R →+* S} {p : Polynomial R} (hp : p.Monic) [Nontrivial S] :
    map f p 0
    theorem Polynomial.degree_map_le {R : Type u} {S : Type v} [Semiring R] [Semiring S] {f : R →+* S} {p : Polynomial R} :
    theorem Polynomial.natDegree_map_le {R : Type u} {S : Type v} [Semiring R] [Semiring S] {f : R →+* S} {p : Polynomial R} :
    theorem Polynomial.degree_map_lt {R : Type u} {S : Type v} [Semiring R] [Semiring S] {f : R →+* S} {p : Polynomial R} (hp : f p.leadingCoeff = 0) (hp₀ : p 0) :
    theorem Polynomial.natDegree_map_lt {R : Type u} {S : Type v} [Semiring R] [Semiring S] {f : R →+* S} {p : Polynomial R} (hp : f p.leadingCoeff = 0) (hp₀ : map f p 0) :
    theorem Polynomial.natDegree_map_lt' {R : Type u} {S : Type v} [Semiring R] [Semiring S] {f : R →+* S} {p : Polynomial R} (hp : f p.leadingCoeff = 0) (hp₀ : 0 < p.natDegree) :

    Variant of natDegree_map_lt that assumes 0 < natDegree p instead of map f p ≠ 0.

    theorem Polynomial.eval₂_comp {R : Type u} {S : Type v} [Semiring R] {p q : Polynomial R} [CommSemiring S] (f : R →+* S) {x : S} :
    eval₂ f x (p.comp q) = eval₂ f (eval₂ f x q) p
    @[simp]
    theorem Polynomial.iterate_comp_eval₂ {R : Type u} {S : Type v} [Semiring R] {p q : Polynomial R} [CommSemiring S] (f : R →+* S) (k : ) (t : S) :
    @[simp]
    theorem Polynomial.iterate_comp_eval {R : Type u} [CommSemiring R] {p q : Polynomial R} (k : ) (t : R) :