All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Mul Operator adjoint eq conj

QuantumMechanics.SpaceDHilbertSpace.mulOperator_adjoint_eq_conj

Plain-language statement

The adjoint of a multiplication operator is again a multiplication operator.

Exact Lean statement

lemma mulOperator_adjoint_eq_conj {μ : Measure (Space d)} [IsFiniteMeasureOnCompacts μ]
    {f : Space d → ℂ} (hf : AEStronglyMeasurable f μ) :
    (𝓜 μ f)† = 𝓜 μ (conj ∘ f)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma mulOperator_adjoint_eq_conj {μ : Measure (Space d)} [IsFiniteMeasureOnCompacts μ]    {f : Space d  ℂ} (hf : AEStronglyMeasurable f μ) :    (𝓜 μ f)† = 𝓜 μ (conj ∘ f) := by  have hFA : (𝓜 μ f).IsFormalAdjoint (𝓜 μ (conj ∘ f)) := by    intro ψ φ    refine integral_congr_ae ?_    filter_upwards [mulOperator_apply_ae ψ, mulOperator_apply_ae φ] with x h₁ h₂    simp [h₁, h₂, mul_assoc, mul_left_comm]  refine eq_of_le_of_ge ?_ (hFA.le_adjoint <| mulOperator_hasDenseDomain hf)  refine mulOperator_adjoint_domain_le hf, fun ψ ψ' hψ  ?_  refine adjoint_apply_eq (mulOperator_hasDenseDomain hf) ψ fun φ  ?_  rw [ inner_conj_symm, hψ, (hFA φ ψ').symm, inner_conj_symm]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QuantumMechanics/Operators/Multiplication.lean:317-328

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