Integrable On norm rpow ball iff
Space.integrableOn_norm_rpow_ball_iff
Plain-language statement
The function x ↦ ‖x‖ᵖ is integrable on {x : Space d | 0 ≤ ‖x‖ < b} iff 0 < d + p.
Exact Lean statement
lemma integrableOn_norm_rpow_ball_iff {d : ℕ} [NeZero d] {b : ℝ} (hb : 0 < b) (p : ℝ) :
IntegrableOn (fun x : Space d ↦ ‖x‖ ^ p) (Metric.ball 0 b) ↔ 0 < d + pFormal artifact
Lean source
lemma integrableOn_norm_rpow_ball_iff {d : ℕ} [NeZero d] {b : ℝ} (hb : 0 < b) (p : ℝ) : IntegrableOn (fun x : Space d ↦ ‖x‖ ^ p) (Metric.ball 0 b) ↔ 0 < d + p := by let f : Space d → ENNReal := (Metric.ball 0 b).indicator (fun x ↦ ‖‖x‖ ^ p‖ₑ) let g : ℝ → ℝ := (Set.Ioo 0 b).indicator (fun r ↦ r ^ p) have hfg : f =ᵐ[volume] fun x ↦ ‖g ‖x‖‖ₑ := by apply ae_iff.mpr suffices {x | f x ≠ ‖g ‖x‖‖ₑ} = if p = 0 then {0} else ∅ by by_cases p = 0 <;> simp_all ext x by_cases ‖x‖ ∈ Set.Ioo 0 b · simp_all [f, g] · by_cases x = 0 <;> simp_all [f, g, Real.zero_rpow_eq_iff] trans Integrable (fun x : Space d ↦ g ‖x‖) · refine and_congr ?_ ?_ · refine iff_of_true ?_ ?_ repeat exact StronglyMeasurable.aestronglyMeasurable (by measurability) · rw [HasFiniteIntegral, ← lintegral_indicator measurableSet_ball, lintegral_congr_ae hfg] rfl trans IntegrableOn (fun r => r ^ (d - 1 + p)) (Set.Ioo 0 b) · have hInter : Set.Ioo 0 b ∩ Set.Ioi 0 = Set.Ioo 0 b := by ext; grind simp_rw [integrable_fun_norm_addHaar, g, Space.finrank_eq_dim, npow_indicator_rpow_eq (Set.left_notMem_Ioo), _root_.MeasureTheory.integrableOn_indicator_iff measurableSet_Ioo, hInter, Nat.cast_pred (Nat.pos_of_neZero d)] rw [intervalIntegral.integrableOn_Ioo_rpow_iff hb, neg_lt_iff_pos_add'] ring_nf- Project
- Physlib
- License
- Apache-2.0
- Commit
- dd43e9e65791
- Source
- Physlib/SpaceAndTime/Space/Integrals/NormPow.lean:108-132
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.