All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Is Closable add continuous

LinearPMap.IsClosable.add_continuous

Plain-language statement

Closability is preserved upon adding a continuous operator.

Exact Lean statement

lemma IsClosable.add_continuous
    (h₁ : U₁.IsClosable) (h₂ : Continuous U₂) (h : U₁.domain ≤ U₂.domain) :
    (U₁ + U₂).IsClosable

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma IsClosable.add_continuous    (h₁ : U₁.IsClosable) (h₂ : Continuous U₂) (h : U₁.domain  U₂.domain) :    (U₁ + U₂).IsClosable := by  use (U₁ + U₂).graph.topologicalClosure.toLinearPMap  refine (toLinearPMap_graph_eq _ fun x₁, x₂ hx hx₁  ?_).symm  subst hx₁  refine graph_fst_eq_zero_snd U₁.closure ?_ rfl  rw [ h₁.graph_closure_eq_closure_graph]  apply mem_closure_iff_seq_limit.mpr  obtain b, hb, hbx := mem_closure_iff_seq_limit.mp hx  simp only [coe_toAddSubmonoid, SetLike.mem_coe, mem_graph_iff, add_domain, add_apply,    Subtype.exists, exists_and_left, exists_eq_left, nhds_prod_eq] at *  refine fun n  ((b n).1, (b n).2 - U₂ (b n).1, h (hb n).choose.1), fun n  ?_, ?_  · exact (hb n).choose.1, eq_sub_of_add_eq (hb n).choose_spec  · refine Filter.Tendsto.prodMk hbx.fst ?_    refine sub_zero x₂ ▸ hbx.snd.sub ?_    exact map_zero U₂ ▸ (h₂.tendsto 0).comp (tendsto_subtype_rng.mpr hbx.fst)
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QuantumMechanics/Operators/Unbounded.lean:493-509

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