All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

D Wirtinger Anti Dir comp

Physlib.Wirtinger.dWirtingerAntiDir_comp

Plain-language statement

The two-term Wirtinger chain rule for dWirtingerAntiDir, the anti-holomorphic dual of dWirtingerDir_comp: ∂̄_v(g∘f) = (∂g/∂f)·∂̄_v f + (∂g/∂f̄)·∂̄_v f̄. Same outer ∂g/∂f, ∂g/∂f̄ coefficients, now each multiplying its anti-holomorphic inner derivative ∂̄_v f, ∂̄_v f̄; same proof as dWirtingerDir_comp.

Exact Lean statement

lemma dWirtingerAntiDir_comp {g : ℂ → ℂ} (hg : DifferentiableAt ℝ g (f u))
    (hf : DifferentiableAt ℝ f u) (v : V) :
    dWirtingerAntiDir (fun p => g (f p)) v u =
      dWirtingerDir g 1 (f u) * dWirtingerAntiDir f v u
        + dWirtingerAntiDir g 1 (f u) * dWirtingerAntiDir (fun p => star (f p)) v u

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma dWirtingerAntiDir_comp {g : ℂ  ℂ} (hg : DifferentiableAt  g (f u))    (hf : DifferentiableAt  f u) (v : V) :    dWirtingerAntiDir (fun p => g (f p)) v u =      dWirtingerDir g 1 (f u) * dWirtingerAntiDir f v u        + dWirtingerAntiDir g 1 (f u) * dWirtingerAntiDir (fun p => star (f p)) v u := by  simp only [dWirtingerDir_apply, dWirtingerAntiDir_apply]  rw [show (fun p => g (f p)) = g ∘ f from rfl, fderiv_comp u hg hf, fderiv_star_eq hf]  simp only [ContinuousLinearMap.comp_apply, ContinuousLinearEquiv.coe_coe,    Complex.conjCLE_apply, Complex.star_def, smul_eq_mul, mul_one,    realLinear_apply_eq_wirtinger (fderiv  g (f u)) (fderiv  f u v),    realLinear_apply_eq_wirtinger (fderiv  g (f u)) (fderiv  f u (Complex.I • v))]  ring
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Mathematics/Calculus/Wirtinger/Basic.lean:428-439

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.32.0

Adiabatic relation log

adiabatic_relation_log

Plain-language statement

Adiabatic relation in logarithmic form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then c * log (Ua/Ub) + log (Va/Vb) = 0.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Adiabatic relation Ua Ub Va Vb

adiabatic_relation_UaUbVaVb

Plain-language statement

Adiabatic relation in product form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then (Ua/Ub)^c * (Va/Vb) = 1.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record