mathlib documentation

ring_theory.derivation

Derivations #

This file defines derivation. A derivation D from the R-algebra A to the A-module M is an R-linear map that satisfy the Leibniz rule D (a * b) = a * D b + D a * b.

Main results #

Future project #

Generalize this into bimodules.

structure derivation (R : Type u_1) (A : Type u_2) [comm_semiring R] [comm_semiring A] [algebra R A] (M : Type u_3) [add_comm_monoid M] [module A M] [module R M] :
Type (max u_2 u_3)

D : derivation R A M is an R-linear map from A to M that satisfies the leibniz equality. We also require that D 1 = 0. See derivation.mk' for a constructor that deduces this assumption from the Leibniz rule when M is cancellative.

TODO: update this when bimodules are defined.

Instances for derivation
@[protected, instance]
def derivation.add_monoid_hom_class {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
Equations
@[protected, instance]
def derivation.has_coe_to_fun {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
has_coe_to_fun (derivation R A M) (λ (_x : derivation R A M), A → M)

Helper instance for when there's too many metavariables to apply fun_like.has_coe_to_fun directly.

Equations
theorem derivation.to_fun_eq_coe {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) :
@[protected, instance]
def derivation.has_coe_to_linear_map {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
has_coe (derivation R A M) (A →ₗ[R] M)
Equations
@[simp]
theorem derivation.to_linear_map_eq_coe {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) :
@[simp]
theorem derivation.mk_coe {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (f : A →ₗ[R] M) (h₁ : f 1 = 0) (h₂ : ∀ (a b : A), f (a * b) = a f b + b f a) :
@[simp, norm_cast]
theorem derivation.coe_fn_coe {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (f : derivation R A M) :
theorem derivation.coe_injective {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
@[ext]
theorem derivation.ext {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {D1 D2 : derivation R A M} (H : ∀ (a : A), D1 a = D2 a) :
D1 = D2
theorem derivation.congr_fun {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {D1 D2 : derivation R A M} (h : D1 = D2) (a : A) :
D1 a = D2 a
@[protected]
theorem derivation.map_add {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) (a b : A) :
D (a + b) = D a + D b
@[protected]
theorem derivation.map_zero {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) :
D 0 = 0
@[simp]
theorem derivation.map_smul {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) (r : R) (a : A) :
D (r a) = r D a
@[simp]
theorem derivation.leibniz {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) (a b : A) :
D (a * b) = a D b + b D a
theorem derivation.map_sum {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) {ι : Type u_4} (s : finset ι) (f : ι → A) :
D (s.sum (λ (i : ι), f i)) = s.sum (λ (i : ι), D (f i))
@[simp]
theorem derivation.map_smul_of_tower {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {S : Type u_4} [has_smul S A] [has_smul S M] [linear_map.compatible_smul A M S R] (D : derivation R A M) (r : S) (a : A) :
D (r a) = r D a
@[simp]
theorem derivation.map_one_eq_zero {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) :
D 1 = 0
@[simp]
theorem derivation.map_algebra_map {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) (r : R) :
D ((algebra_map R A) r) = 0
@[simp]
theorem derivation.map_coe_nat {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) (n : ) :
D n = 0
@[simp]
theorem derivation.leibniz_pow {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) (a : A) (n : ) :
D (a ^ n) = n a ^ (n - 1) D a
theorem derivation.eq_on_adjoin {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {D1 D2 : derivation R A M} {s : set A} (h : set.eq_on D1 D2 s) :
theorem derivation.ext_of_adjoin_eq_top {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {D1 D2 : derivation R A M} (s : set A) (hs : algebra.adjoin R s = ) (h : set.eq_on D1 D2 s) :
D1 = D2

If adjoin of a set is the whole algebra, then any two derivations equal on this set are equal on the whole algebra.

@[protected, instance]
def derivation.has_zero {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
Equations
@[simp]
theorem derivation.coe_zero {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
0 = 0
@[simp]
theorem derivation.coe_zero_linear_map {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
0 = 0
theorem derivation.zero_apply {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (a : A) :
0 a = 0
@[protected, instance]
def derivation.has_add {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
Equations
@[simp]
theorem derivation.coe_add {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D1 D2 : derivation R A M) :
(D1 + D2) = D1 + D2
@[simp]
theorem derivation.coe_add_linear_map {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D1 D2 : derivation R A M) :
(D1 + D2) = D1 + D2
theorem derivation.add_apply {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {D1 D2 : derivation R A M} (a : A) :
(D1 + D2) a = D1 a + D2 a
@[protected, instance]
def derivation.inhabited {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
Equations
@[protected, instance]
def derivation.has_smul {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {S : Type u_4} [monoid S] [distrib_mul_action S M] [smul_comm_class R S M] [smul_comm_class S A M] :
Equations
@[simp]
theorem derivation.coe_smul {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {S : Type u_4} [monoid S] [distrib_mul_action S M] [smul_comm_class R S M] [smul_comm_class S A M] (r : S) (D : derivation R A M) :
(r D) = r D
@[simp]
theorem derivation.coe_smul_linear_map {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {S : Type u_4} [monoid S] [distrib_mul_action S M] [smul_comm_class R S M] [smul_comm_class S A M] (r : S) (D : derivation R A M) :
(r D) = r D
theorem derivation.smul_apply {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (a : A) {S : Type u_4} [monoid S] [distrib_mul_action S M] [smul_comm_class R S M] [smul_comm_class S A M] (r : S) (D : derivation R A M) :
(r D) a = r D a
@[protected, instance]
def derivation.add_comm_monoid {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
Equations
def derivation.coe_fn_add_monoid_hom {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] :
derivation R A M →+ A → M

coe_fn as an add_monoid_hom.

Equations
@[protected, instance]
def derivation.is_central_scalar {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {S : Type u_4} [monoid S] [distrib_mul_action S M] [smul_comm_class R S M] [smul_comm_class S A M] [distrib_mul_action Sᵐᵒᵖ M] [is_central_scalar S M] :
@[protected, instance]
def derivation.module {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {S : Type u_4} [semiring S] [module S M] [smul_comm_class R S M] [smul_comm_class S A M] :
module S (derivation R A M)
Equations
@[protected, instance]
def derivation.is_scalar_tower {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] [is_scalar_tower R A M] :
def linear_map.comp_der {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {N : Type u_4} [add_comm_monoid N] [module A N] [module R N] [is_scalar_tower R A M] [is_scalar_tower R A N] (f : M →ₗ[A] N) :

We can push forward derivations using linear maps, i.e., the composition of a derivation with a linear map is a derivation. Furthermore, this operation is linear on the spaces of derivations.

Equations
@[simp]
theorem derivation.coe_to_linear_map_comp {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) {N : Type u_4} [add_comm_monoid N] [module A N] [module R N] [is_scalar_tower R A M] [is_scalar_tower R A N] (f : M →ₗ[A] N) :
@[simp]
theorem derivation.coe_comp {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] (D : derivation R A M) {N : Type u_4} [add_comm_monoid N] [module A N] [module R N] [is_scalar_tower R A M] [is_scalar_tower R A N] (f : M →ₗ[A] N) :
def derivation.llcomp {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_comm_monoid M] [module A M] [module R M] {N : Type u_4} [add_comm_monoid N] [module A N] [module R N] [is_scalar_tower R A M] [is_scalar_tower R A N] :

The composition of a derivation with a linear map as a bilinear map

Equations
def derivation.mk' {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_cancel_comm_monoid M] [module R M] [module A M] (D : A →ₗ[R] M) (h : ∀ (a b : A), D (a * b) = a D b + b D a) :

Define derivation R A M from a linear map when M is cancellative by verifying the Leibniz rule.

Equations
@[simp]
theorem derivation.coe_mk' {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_cancel_comm_monoid M] [module R M] [module A M] (D : A →ₗ[R] M) (h : ∀ (a b : A), D (a * b) = a D b + b D a) :
@[simp]
theorem derivation.coe_mk'_linear_map {R : Type u_1} [comm_semiring R] {A : Type u_2} [comm_semiring A] [algebra R A] {M : Type u_3} [add_cancel_comm_monoid M] [module R M] [module A M] (D : A →ₗ[R] M) (h : ∀ (a b : A), D (a * b) = a D b + b D a) :
@[protected]
theorem derivation.map_neg {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] (D : derivation R A M) (a : A) :
D (-a) = -D a
@[protected]
theorem derivation.map_sub {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] (D : derivation R A M) (a b : A) :
D (a - b) = D a - D b
@[simp]
theorem derivation.map_coe_int {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] (D : derivation R A M) (n : ) :
D n = 0
theorem derivation.leibniz_of_mul_eq_one {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] (D : derivation R A M) {a b : A} (h : a * b = 1) :
D a = -a ^ 2 D b
theorem derivation.leibniz_inv_of {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] (D : derivation R A M) (a : A) [invertible a] :
D ( a) = - a ^ 2 D a
theorem derivation.leibniz_inv {R : Type u_1} [comm_ring R] {M : Type u_3} [add_comm_group M] [module R M] {K : Type u_2} [field K] [module K M] [algebra R K] (D : derivation R K M) (a : K) :
@[protected, instance]
def derivation.has_neg {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] :
Equations
@[simp]
theorem derivation.coe_neg {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] (D : derivation R A M) :
@[simp]
theorem derivation.coe_neg_linear_map {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] (D : derivation R A M) :
theorem derivation.neg_apply {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] (D : derivation R A M) (a : A) :
(-D) a = -D a
@[protected, instance]
def derivation.has_sub {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] :
Equations
@[simp]
theorem derivation.coe_sub {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] (D1 D2 : derivation R A M) :
(D1 - D2) = D1 - D2
@[simp]
theorem derivation.coe_sub_linear_map {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] (D1 D2 : derivation R A M) :
(D1 - D2) = D1 - D2
theorem derivation.sub_apply {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] {D1 D2 : derivation R A M} (a : A) :
(D1 - D2) a = D1 a - D2 a
@[protected, instance]
def derivation.add_comm_group {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {M : Type u_3} [add_comm_group M] [module A M] [module R M] :
Equations

Lie structures #

@[protected, instance]
def derivation.has_bracket {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] :

The commutator of derivations is again a derivation.

Equations
@[simp]
theorem derivation.commutator_coe_linear_map {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {D1 D2 : derivation R A A} :
theorem derivation.commutator_apply {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] {D1 D2 : derivation R A A} (a : A) :
D1,D2 a = D1 (D2 a) - D2 (D1 a)
@[protected, instance]
def derivation.lie_ring {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] :
Equations
@[protected, instance]
def derivation.lie_algebra {R : Type u_1} [comm_ring R] {A : Type u_2} [comm_ring A] [algebra R A] :
Equations
def diff_to_ideal_of_quotient_comp_eq {R A : Type u} {B : Type w} [comm_semiring R] [comm_semiring A] [comm_ring B] [algebra R A] [algebra R B] (I : ideal B) (f₁ f₂ : A →ₐ[R] B) (e : (ideal.quotient.mkₐ R I).comp f₁ = (ideal.quotient.mkₐ R I).comp f₂) :

If f₁ f₂ : A →ₐ[R] B are two lifts of the same A →ₐ[R] B ⧸ I, we may define a map f₁ - f₂ : A →ₗ[R] I.

Equations
@[simp]
theorem diff_to_ideal_of_quotient_comp_eq_apply {R A : Type u} {B : Type w} [comm_semiring R] [comm_semiring A] [comm_ring B] [algebra R A] [algebra R B] (I : ideal B) (f₁ f₂ : A →ₐ[R] B) (e : (ideal.quotient.mkₐ R I).comp f₁ = (ideal.quotient.mkₐ R I).comp f₂) (x : A) :
((diff_to_ideal_of_quotient_comp_eq I f₁ f₂ e) x) = f₁ x - f₂ x
def derivation_to_square_zero_of_lift {R A : Type u} {B : Type w} [comm_semiring R] [comm_semiring A] [comm_ring B] [algebra R A] [algebra R B] (I : ideal B) (hI : I ^ 2 = ) [algebra A B] [is_scalar_tower R A B] (f : A →ₐ[R] B) (e : (ideal.quotient.mkₐ R I).comp f = is_scalar_tower.to_alg_hom R A (B I)) :

Given a tower of algebras R → A → B, and a square-zero I : ideal B, each lift A →ₐ[R] B of the canonical map A →ₐ[R] B ⧸ I corresponds to a R-derivation from A to I.

Equations
theorem derivation_to_square_zero_of_lift_apply {R A : Type u} {B : Type w} [comm_semiring R] [comm_semiring A] [comm_ring B] [algebra R A] [algebra R B] (I : ideal B) (hI : I ^ 2 = ) [algebra A B] [is_scalar_tower R A B] (f : A →ₐ[R] B) (e : (ideal.quotient.mkₐ R I).comp f = is_scalar_tower.to_alg_hom R A (B I)) (x : A) :
def lift_of_derivation_to_square_zero {R A : Type u} {B : Type w} [comm_semiring R] [comm_semiring A] [comm_ring B] [algebra R A] [algebra R B] (I : ideal B) (hI : I ^ 2 = ) [algebra A B] [is_scalar_tower R A B] (f : derivation R A I) :

Given a tower of algebras R → A → B, and a square-zero I : ideal B, each R-derivation from A to I corresponds to a lift A →ₐ[R] B of the canonical map A →ₐ[R] B ⧸ I.

Equations
theorem lift_of_derivation_to_square_zero_apply {R A : Type u} {B : Type w} [comm_semiring R] [comm_semiring A] [comm_ring B] [algebra R A] [algebra R B] (I : ideal B) (hI : I ^ 2 = ) [algebra A B] [is_scalar_tower R A B] (f : derivation R A I) (x : A) :
@[simp]
theorem lift_of_derivation_to_square_zero_mk_apply {R A : Type u} {B : Type w} [comm_semiring R] [comm_semiring A] [comm_ring B] [algebra R A] [algebra R B] (I : ideal B) (hI : I ^ 2 = ) [algebra A B] [is_scalar_tower R A B] (d : derivation R A I) (x : A) :
def derivation_to_square_zero_equiv_lift {R A : Type u} {B : Type w} [comm_semiring R] [comm_semiring A] [comm_ring B] [algebra R A] [algebra R B] (I : ideal B) (hI : I ^ 2 = ) [algebra A B] [is_scalar_tower R A B] :

Given a tower of algebras R → A → B, and a square-zero I : ideal B, there is a 1-1 correspondance between R-derivations from A to I and lifts A →ₐ[R] B of the canonical map A →ₐ[R] B ⧸ I.

Equations
@[simp]
@[simp]
@[reducible]
def kaehler_differential.ideal (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :

The kernel of the multiplication map S ⊗[R] S →ₐ[R] S.

theorem kaehler_differential.one_smul_sub_smul_one_mem_ideal (R : Type u_1) {S : Type u_2} [comm_ring R] [comm_ring S] [algebra R S] (a : S) :
def derivation.tensor_product_to {R : Type u_1} {S : Type u_2} [comm_ring R] [comm_ring S] [algebra R S] {M : Type u_3} [add_comm_group M] [module R M] [module S M] [is_scalar_tower R S M] (D : derivation R S M) :

For a R-derivation S → M, this is the map S ⊗[R] S →ₗ[S] M sending s ⊗ₜ t ↦ s • D t.

Equations
theorem derivation.tensor_product_to_tmul {R : Type u_1} {S : Type u_2} [comm_ring R] [comm_ring S] [algebra R S] {M : Type u_3} [add_comm_group M] [module R M] [module S M] [is_scalar_tower R S M] (D : derivation R S M) (s t : S) :
theorem derivation.tensor_product_to_mul {R : Type u_1} {S : Type u_2} [comm_ring R] [comm_ring S] [algebra R S] {M : Type u_3} [add_comm_group M] [module R M] [module S M] [is_scalar_tower R S M] (D : derivation R S M) (x y : tensor_product R S S) :

The kernel of S ⊗[R] S →ₐ[R] S is generated by 1 ⊗ s - s ⊗ 1 as a S-module.

theorem kaehler_differential.span_range_eq_ideal (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :
@[protected, instance]
def kaehler_differential.module_2 (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :
module S Ω[ S R ]
def kaehler_differential (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :
Type u_2

The module of Kähler differentials (Kahler differentials, Kaehler differentials). This is implemented as I / I ^ 2 with I the kernel of the multiplication map S ⊗[R] S →ₐ[R] S. To view elements as a linear combination of the form s • D s', use kaehler_differential.tensor_product_to_surjective and derivation.tensor_product_to_tmul.

We also provide the notation Ω[S⁄R] for kaehler_differential R S. Note that the slash is \textfractionsolidus.

Equations
Instances for kaehler_differential
@[protected, instance]
def kaehler_differential.module_3 (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :
@[protected, instance]
def kaehler_differential.module (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :
module R Ω[ S R ]
@[protected, instance]
def kaehler_differential.add_comm_group (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :
@[protected, instance]
def kaehler_differential.nonempty (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :
@[protected, instance]
def kaehler_differential.is_scalar_tower (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :
@[protected, instance]
def kaehler_differential.is_scalar_tower' (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :
def kaehler_differential.D (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] :

The universal derivation into Ω[S⁄R].

Equations
theorem kaehler_differential.D_apply (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] (s : S) :
def derivation.lift_kaehler_differential {R : Type u_1} {S : Type u_2} [comm_ring R] [comm_ring S] [algebra R S] {M : Type u_3} [add_comm_group M] [module R M] [module S M] [is_scalar_tower R S M] (D : derivation R S M) :
Ω[ S R ] →ₗ[S] M

The linear map from Ω[S⁄R], associated with a derivation.

Equations
theorem derivation.lift_kaehler_differential_comp {R : Type u_1} {S : Type u_2} [comm_ring R] [comm_ring S] [algebra R S] {M : Type u_3} [add_comm_group M] [module R M] [module S M] [is_scalar_tower R S M] (D : derivation R S M) :
@[ext]
theorem derivation.lift_kaehler_differential_unique {R : Type u_1} {S : Type u_2} [comm_ring R] [comm_ring S] [algebra R S] {M : Type u_3} [add_comm_group M] [module R M] [module S M] [is_scalar_tower R S M] (f f' : Ω[ S R ] →ₗ[S] M) (hf : (f.comp_der) (kaehler_differential.D R S) = (f'.comp_der) (kaehler_differential.D R S)) :
f = f'
def kaehler_differential.linear_map_equiv_derivation (R : Type u_1) (S : Type u_2) [comm_ring R] [comm_ring S] [algebra R S] {M : Type u_3} [add_comm_group M] [module R M] [module S M] [is_scalar_tower R S M] :

The S-linear maps from Ω[S⁄R] to M are (S-linearly) equivalent to R-derivations from S to M.

Equations