All proofs
Project-declaredLean 4.32.0 Β· mathlib@81a5d257c8e4

Radius Reg Pow tendsto radius Pow

QuantumMechanics.radiusRegPow_tendsto_radiusPow'

Plain-language statement

𝐫[Ξ΅,s] ψ converges pointwise to 𝐫[s] ψ as Ξ΅ β†’ 0 provided 𝐫[Ξ΅,s] ψ 0 is bounded.

Exact Lean statement

lemma radiusRegPow_tendsto_radiusPow' {d : β„•} (s : ℝ) (ψ : 𝓒(Space d, β„‚)) (h : 0 ≀ s ∨ ψ 0 = 0) :
    Tendsto (fun Ξ΅ ↦ ⇑(𝐫₀ Ξ΅ s ψ)) nhdsZeroUnits (nhds (𝐫 s ψ))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma radiusRegPow_tendsto_radiusPow' {d : β„•} (s : ℝ) (ψ : 𝓒(Space d, β„‚)) (h : 0 ≀ s ∨ ψ 0 = 0) :    Tendsto (fun Ξ΅ ↦ ⇑(𝐫₀ Ξ΅ s ψ)) nhdsZeroUnits (nhds (𝐫 s ψ)) := by  refine tendsto_pi_nhds.mpr fun x ↦ ?_  rcases eq_zero_or_neZero x with (rfl | hx)  Β· rcases h with (hs | hψ)    Β· simp only [radiusRegPowCLM_apply, radiusPowLM_apply, Complex.real_smul, norm_zero,        ne_eq, OfNat.ofNat_ne_zero, not_false_eq_true, zero_pow, zero_add]      have : (0 : ℝ) ^ s = (0 ^ 2) ^ (s / 2) := by        rw [← Real.rpow_natCast_mul (le_refl 0), Nat.cast_ofNat, mul_div_cancelβ‚€ s (by norm_num)]      rw [this]      refine Tendsto.mul_const (ψ 0) <| Tendsto.ofReal ?_      exact Tendsto.rpow_const (Tendsto.pow tendsto_comap 2) (Or.inr <| by linarith)    Β· simp [hψ]  Β· exact radiusRegPow_tendsto_radiusPow s ψ hx.ne
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QuantumMechanics/Operators/Position.lean:279-292

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