All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Iio subset regularity Domain

LinearPMap.IsSymmetric.Iio_subset_regularityDomain

Plain-language statement

If m is a lower bound on the numerical range then the regularity domain contains (-∞,m).

Exact Lean statement

lemma Iio_subset_regularityDomain {m : ℝ} (h : m ∈ lowerBounds (Θᵣₑ T)) :
    ofReal '' Iio m ⊆ T.regularityDomain

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma Iio_subset_regularityDomain {m : } (h : m  lowerBounds (Θᵣₑ T)) :    ofReal '' Iio m  T.regularityDomain := by  intro z r, hr, hrz  refine m - r, sub_pos.mpr hr, fun x  ?_  rcases eq_zero_or_neZero x with rfl | hx  · simp  · obtain s, hs, hs' := hT.numericalRange_eq ▸ mem_numericalRange hx.ne    apply h at hs    have hsr : r < s := lt_of_lt_of_le hr hs    refine le_of_mul_le_mul_right ?_ (norm_pos_iff.mpr hx.ne)    calc      _ = (m - r) * ‖x‖ ^ 2 := by rw [mul_assoc, pow_two]      _  (s - r) * ‖x‖ ^ 2 := by nlinarith      _ = ‖s * ‖x‖ ^ 2 - r * ‖x‖ ^ 2:= by simp [ sub_mul, abs_of_pos, sub_pos, hsr]      _ = ‖(s : ℂ) * ‖x‖ ^ 2 - r * ‖x‖ ^ 2:= by simp [ ofReal_pow,  ofReal_mul,  ofReal_sub]      _ = ‖⟪↑x, T x⟫_ℂ - r * ‖x‖ ^ 2:= by simp [hs', mul_comm, hx.ne]      _ = ‖⟪↑x, T x - z • x⟫_ℂ‖ := by simp [inner_sub_right, inner_smul_right, hrz]      _  ‖T x - z • x‖ * ‖x‖ := mul_comm _ ‖x‖ ▸ norm_inner_le_norm _ _
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QuantumMechanics/Operators/SpectralTheory/Symmetric.lean:113-130

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