Documentation

Mathlib.FieldTheory.Differential.Basic

Differential Fields #

This file defines the logarithmic derivative Differential.logDeriv and proves properties of it. This is defined algebraically, compared to logDeriv which is analytical.

def Differential.logDeriv {R : Type u_1} [Field R] [Differential R] (a : R) :
R

The logarithmic derivative of a is a′ / a.

Equations
Instances For
    @[simp]
    theorem Differential.logDeriv_pow {R : Type u_1} [Field R] [Differential R] (n : ) (a : R) :
    theorem Differential.logDeriv_multisetProd {R : Type u_1} [Field R] [Differential R] {ι : Type u_2} (s : Multiset ι) {f : ιR} (h : xs, f x 0) :
    Differential.logDeriv (Multiset.map f s).prod = (Multiset.map (fun (x : ι) => Differential.logDeriv (f x)) s).sum
    theorem Differential.logDeriv_prod {R : Type u_1} [Field R] [Differential R] (ι : Type u_2) (s : Finset ι) (f : ιR) (h : xs, f x 0) :
    Differential.logDeriv (∏ xs, f x) = xs, Differential.logDeriv (f x)
    theorem Differential.logDeriv_prod_of_eq_zero {R : Type u_1} [Field R] [Differential R] (ι : Type u_2) (s : Finset ι) (f : ιR) (h : xs, f x = 0) :
    Differential.logDeriv (∏ xs, f x) = xs, Differential.logDeriv (f x)
    @[reducible]
    noncomputable def Differential.differentialFiniteDimensional (F : Type u_2) [Field F] [Differential F] [CharZero F] (K : Type u_3) [Field K] [Algebra F K] [FiniteDimensional F K] :

    If K is a finite field extension of F then we can define a differential algebra on K, by choosing a primitive element of K, k and then using the equivalence to AdjoinRoot (minpoly k).

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

      A finite extension of a differential field has a unique derivation which agrees with the one on the base field.

      Equations
      Instances For