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
    theorem Differential.logDeriv_mul {R : Type u_1} [Field R] [Differential R] (a : R) (b : R) (ha : a 0) (hb : b 0) :
    theorem Differential.logDeriv_div {R : Type u_1} [Field R] [Differential R] (a : R) (b : R) (ha : a 0) (hb : b 0) :
    @[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)