Mul Operator add ge
QuantumMechanics.SpaceDHilbertSpace.mulOperator_add_ge
Plain-language statement
𝓜 μ (f + g) extends 𝓜 μ f + 𝓜 μ g. In general the domains do not match: ψ ∈ (𝓜 μ f + 𝓜 μ g).domain amounts to MemHS (f • ψ) μ and MemHS (g • ψ) μ whereas ψ ∈ (𝓜 μ (f + g)).domain is equivalent to the weaker condition MemHS ((f + g) • ψ) μ. See mulOperator_add_eq for a sufficient condition to ensure equality.
Exact Lean statement
lemma mulOperator_add_ge (μ : Measure (Space d)) (f g : Space d → ℂ) :
𝓜 μ f + 𝓜 μ g ≤ 𝓜 μ (f + g)Formal artifact
Lean source
lemma mulOperator_add_ge (μ : Measure (Space d)) (f g : Space d → ℂ) : 𝓜 μ f + 𝓜 μ g ≤ 𝓜 μ (f + g) := by refine le_of_le_graph fun u h ↦ ?_ rw [mem_graph_iff] at * obtain ⟨⟨v, hv⟩, hvu, hvu'⟩ := h have hv' : v ∈ (𝓜 μ (f + g)).domain := by rw [add_domain, Submodule.mem_inf] at hv simpa [add_mul, mem_mulOperator_domain_iff] using hv.1.add hv.2 refine ⟨⟨v, hv'⟩, hvu, ?_⟩ rw [← hvu', ext_iff] change _ =ᵐ[μ] 𝓜 μ f ⟨v, hv.1⟩ + 𝓜 μ g ⟨v, hv.2⟩ filter_upwards [mulOperator_apply_ae ⟨v, hv.1⟩, mulOperator_apply_ae ⟨v, hv.2⟩, mulOperator_apply_ae ⟨v, hv'⟩, coeFn_add (𝓜 μ f ⟨v, hv.1⟩) (𝓜 μ g ⟨v, hv.2⟩)] simp_all [add_mul]- Project
- Physlib
- License
- Apache-2.0
- Commit
- dd43e9e65791
- Source
- Physlib/QuantumMechanics/Operators/Multiplication.lean:408-421
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
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.
Source project: Physlib
Person-level attribution pending.
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.
Source project: Physlib
Person-level attribution pending.
Deriv Within mean Energy Beta eq neg variance
CanonicalEnsemble.derivWithin_meanEnergy_Beta_eq_neg_variance
Plain-language statement
(∂U/∂β) = -Var(E) for finite systems.
Source project: Physlib
Person-level attribution pending.