Documentation

TauCeti.Analysis.Normed.Algebra.BCH.Local

The local Baker--Campbell--Hausdorff map #

This file defines the germ at (0, 0) represented by logOneAdd (exp x * exp y - 1) in a complete real normed algebra. Using a germ records that this expression is a local logarithm; its values away from the origin have no mathematical role.

The exponential of this germ is the product of the two exponentials. Its restrictions to either coordinate axis are the identity germ, and its chosen representative is analytic at the origin.

Main declarations #

References #

noncomputable def NormedSpace.localBCH (A : Type u_1) [NormedRing A] [NormedAlgebra A] [hA : CompleteSpace A] :
(nhds (0, 0)).Germ A

The germ at (0, 0) represented by the local logarithm fun p ↦ logOneAdd ℝ A (exp p.1 * exp p.2 - 1) of exp p.1 * exp p.2.

Equations
Instances For
    theorem NormedSpace.localBCH_def (A : Type u_1) [NormedRing A] [NormedAlgebra A] [CompleteSpace A] :
    localBCH A = fun (p : A × A) => logOneAdd A (exp p.1 * exp p.2 - 1)

    localBCH is the germ of fun p ↦ logOneAdd ℝ A (exp p.1 * exp p.2 - 1).

    @[simp]

    The local Baker--Campbell--Hausdorff germ takes the value zero at the origin.

    @[simp]
    theorem NormedSpace.localBCH_sliceLeft (A : Type u_1) [NormedRing A] [NormedAlgebra A] [CompleteSpace A] :
    (localBCH A).sliceLeft = fun (x : A) => x

    Restricting the local Baker--Campbell--Hausdorff germ to the first coordinate axis gives the identity germ.

    @[simp]
    theorem NormedSpace.localBCH_sliceRight (A : Type u_1) [NormedRing A] [NormedAlgebra A] [CompleteSpace A] :
    (localBCH A).sliceRight = fun (y : A) => y

    Restricting the local Baker--Campbell--Hausdorff germ to the second coordinate axis gives the identity germ.

    @[simp]
    theorem NormedSpace.localBCH_map_exp (A : Type u_1) [NormedRing A] [NormedAlgebra A] [CompleteSpace A] :
    Filter.Germ.map exp (localBCH A) = fun (p : A × A) => exp p.1 * exp p.2

    Applying exponential to the local Baker--Campbell--Hausdorff germ gives the germ of the product of the two exponentials.

    The representative defining localBCH is analytic at the origin.

    The local Baker--Campbell--Hausdorff germ tends to zero at the origin.

    A germ tending to zero with the same exponential image as localBCH equals localBCH.

    @[simp]
    theorem NormedSpace.map_localBCH (A : Type u_1) [NormedRing A] [NormedAlgebra A] [CompleteSpace A] {B : Type u_2} [NormedRing B] [NormedAlgebra B] [CompleteSpace B] {F : Type u_3} [FunLike F A B] [RingHomClass F A B] (f : F) (hf : Continuous f) :
    Filter.Germ.map (⇑f) (localBCH A) = (localBCH B).compTendsto (Prod.map f f)

    Continuous ring homomorphisms commute with the local Baker--Campbell--Hausdorff germ.