Documentation

Mathlib.Tactic.Polynomial.Core

Setup for the polynomial tactic #

This file initializes the environment extensions and simp sets used by the polynomial tactic.

These extensions let downstream users use their own polynomial-like types (such as PowerSeries) with the polynomial tactic suite.

polynomial_pre marks a theorem to be used by the polynomial tactic as a preprocessing lemma. These serve the purpose of removing any definitions specific to polynomials that algebra can't handle. e.g. Polynomial.C and Polynomial.map

polynomial_post marks a theorem to be used by the polynomial_nf tactic as a postprocessing lemma. Used only by polynomial_nf. These serve the purpose of rewriting expressions in algebra normal form into a more readable form. e.g. a • X -> algebraMap _ _ a * X -> C a * X.

polynomial_infer_base marks a procedure used by the polynomial tactic to infer the base ring of polynomial-like types.

Equations
Instances For

    An extension for polynomial.

    Instances For

      Read a polynomial extension from a declaration of the right type.

      Equations
      • One or more equations did not get rendered due to their size.
      Instances For

        Infer the base ring of Polynomial-like types that are registered using the polynomial environment extensions. Includes e.g. Polynomial and MvPolynomial.

        Equations
        • One or more equations did not get rendered due to their size.
        Instances For