All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Integrable On norm rpow ball compl iff

Space.integrableOn_norm_rpow_ball_compl_iff

Plain-language statement

The function x ↦ ‖x‖ᵖ is integrable on {x : Space d | 0 < a ≤ ‖x‖} iff d + p < 0.

Exact Lean statement

lemma integrableOn_norm_rpow_ball_compl_iff {d : ℕ} [NeZero d] {a : ℝ} (ha : 0 < a) (p : ℝ) :
    IntegrableOn (fun x : Space d ↦ ‖x‖ ^ p) (Metric.ball 0 a)ᶜ ↔ d + p < 0

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma integrableOn_norm_rpow_ball_compl_iff {d : } [NeZero d] {a : } (ha : 0 < a) (p : ) :    IntegrableOn (fun x : Space d  ‖x‖ ^ p) (Metric.ball 0 a)ᶜ  d + p < 0 := by  let f : Space d  ENNReal := (Metric.ball 0 a)ᶜ.indicator (fun x  ‖‖x‖ ^ p‖ₑ)  let g :    := (Set.Ici a).indicator (fun r  r ^ p)  have hfg : f = fun x  ‖g ‖x‖‖ₑ := by ext x; by_cases ‖x‖  Set.Ici a <;> simp_all [f, g]  trans Integrable (fun x : Space d  g ‖x‖)  · refine and_congr ?_ ?_    · refine iff_of_true ?_ ?_      repeat exact StronglyMeasurable.aestronglyMeasurable (by measurability)    · dsimp [HasFiniteIntegral]      rw [ lintegral_indicator (by measurability), lintegral_congr_ae hfg.eventuallyEq]  trans IntegrableOn (fun r => r ^ (d - 1 + p)) (Set.Ici a)  · have hInter : Set.Ici a ∩ Set.Ioi 0 = Set.Ici a := by ext; grind    simp_rw [integrable_fun_norm_addHaar, g, Space.finrank_eq_dim,      npow_indicator_rpow_eq (Set.notMem_Ici.mpr ha),      _root_.MeasureTheory.integrableOn_indicator_iff measurableSet_Ici, hInter,      Nat.cast_pred (Nat.pos_of_neZero d)]  rw [integrableOn_Ici_iff_integrableOn_Ioi, integrableOn_Ioi_rpow_iff ha, lt_neg_iff_add_neg]  ring_nf
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/SpaceAndTime/Space/Integrals/NormPow.lean:135-153

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