De Giorgi energy estimate on concentric Balls of ball Pos Part
DeGiorgi.deGiorgi_energy_estimate_on_concentricBalls_of_ballPosPart
Plain-language statement
Localized De Giorgi energy estimate on concentric balls. This packages the weighted Caccioppoli inequality together with the localization step.
Exact Lean statement
theorem deGiorgi_energy_estimate_on_concentricBalls_of_ballPosPart
{u η : E → ℝ} {x₀ : E} {r s Cη k : ℝ}
(A : EllipticCoeff d (Metric.ball x₀ s))
(hr : 0 < r) (hrs : r < s)
(hsub : IsSubsolution A u)
(hu : MemW1pWitness 2 u (Metric.ball x₀ s))
(hw_trunc : MemW1pWitness 2 (positivePartSub u k) (Metric.ball x₀ s))
(hη : ContDiff ℝ (⊤ : ℕ∞) η)
(hη_nonneg : ∀ x, 0 ≤ η x)
(hη_eq_one : ∀ x ∈ Metric.ball x₀ r, η x = 1)
(hη_bound : ∀ x, |η x| ≤ 1)
(hCη : 0 ≤ Cη)
(hη_grad_bound : ∀ x, ‖fderiv ℝ η x‖ ≤ Cη)
(hη_sub_ball : tsupport η ⊆ Metric.ball x₀ s) :
∫ x in Metric.ball x₀ r, ‖hw_trunc.weakGrad x‖ ^ 2 ∂volume ≤
4 * ellipticityRatio A * Cη ^ 2 *
∫ x in Metric.ball x₀ s, |positivePartSub u k x| ^ 2 ∂volumeFormal artifact
Lean source
theorem deGiorgi_energy_estimate_on_concentricBalls_of_ballPosPart {u η : E → ℝ} {x₀ : E} {r s Cη k : ℝ} (A : EllipticCoeff d (Metric.ball x₀ s)) (hr : 0 < r) (hrs : r < s) (hsub : IsSubsolution A u) (hu : MemW1pWitness 2 u (Metric.ball x₀ s)) (hw_trunc : MemW1pWitness 2 (positivePartSub u k) (Metric.ball x₀ s)) (hη : ContDiff ℝ (⊤ : ℕ∞) η) (hη_nonneg : ∀ x, 0 ≤ η x) (hη_eq_one : ∀ x ∈ Metric.ball x₀ r, η x = 1) (hη_bound : ∀ x, |η x| ≤ 1) (hCη : 0 ≤ Cη) (hη_grad_bound : ∀ x, ‖fderiv ℝ η x‖ ≤ Cη) (hη_sub_ball : tsupport η ⊆ Metric.ball x₀ s) : ∫ x in Metric.ball x₀ r, ‖hw_trunc.weakGrad x‖ ^ 2 ∂volume ≤ 4 * ellipticityRatio A * Cη ^ 2 * ∫ x in Metric.ball x₀ s, |positivePartSub u k x| ^ 2 ∂volume := by have hs : 0 < s := lt_trans hr hrs have htrunc_sq_int : IntegrableOn (fun x => ‖hw_trunc.weakGrad x‖ ^ 2) (Metric.ball x₀ s) volume := by simpa [pow_two] using hw_trunc.weakGrad_norm_memLp.integrable_sq have hweighted_int : IntegrableOn (fun x => η x ^ 2 * ‖hw_trunc.weakGrad x‖ ^ 2) (Metric.ball x₀ s) volume := by refine Integrable.mono' htrunc_sq_int ?_ ?_ · exact (((hη.continuous.pow 2).aemeasurable).mul htrunc_sq_int.aestronglyMeasurable.aemeasurable).aestronglyMeasurable · filter_upwards with x have hηx_nonneg : 0 ≤ η x := hη_nonneg x have hηx_le_one : η x ≤ 1 := by simpa [abs_of_nonneg hηx_nonneg] using hη_bound x have hηx_sq_le_one : η x ^ 2 ≤ 1 := by nlinarith have hgw_nonneg : 0 ≤ ‖hw_trunc.weakGrad x‖ ^ 2 := by positivity have hprod_nonneg : 0 ≤ η x ^ 2 * ‖hw_trunc.weakGrad x‖ ^ 2 := by positivity have hle : η x ^ 2 * ‖hw_trunc.weakGrad x‖ ^ 2 ≤ ‖hw_trunc.weakGrad x‖ ^ 2 := by nlinarith simpa [Real.norm_eq_abs, abs_of_nonneg hprod_nonneg, abs_of_nonneg hgw_nonneg] using hle have hpos_sq_int : IntegrableOn (fun x => |positivePartSub u k x| ^ 2) (Metric.ball x₀ s) volume := by simpa [pow_two] using hw_trunc.memLp.integrable_sq have hgrad_term_int : IntegrableOn (fun x => ‖fderiv ℝ η x‖ ^ 2 * |positivePartSub u k x| ^ 2) (Metric.ball x₀ s) volume := by refine Integrable.mono' (hpos_sq_int.const_mul (Cη ^ 2)) ?_ ?_ · exact ((((hη.continuous_fderiv (by simp : ((⊤ : ℕ∞) : WithTop ℕ∞) ≠ 0)).norm.pow 2).aemeasurable).mul hpos_sq_int.aestronglyMeasurable.aemeasurable).aestronglyMeasurable · filter_upwards with x have hfd_sq_le : ‖fderiv ℝ η x‖ ^ 2 ≤ Cη ^ 2 := by exact sq_le_sq.mpr (by simpa [abs_of_nonneg (norm_nonneg _), abs_of_nonneg hCη] using hη_grad_bound x) have hpos_nonneg : 0 ≤ |positivePartSub u k x| ^ 2 := by positivity have hterm_nonneg : 0 ≤ ‖fderiv ℝ η x‖ ^ 2 * |positivePartSub u k x| ^ 2 := by positivity have hle : ‖fderiv ℝ η x‖ ^ 2 * |positivePartSub u k x| ^ 2 ≤ Cη ^ 2 * |positivePartSub u k x| ^ 2 := mul_le_mul_of_nonneg_right hfd_sq_le hpos_nonneg simpa [Real.norm_eq_abs, abs_of_nonneg hterm_nonneg] using hle have hweighted : ∫ x in Metric.ball x₀ s, η x ^ 2 * ‖hw_trunc.weakGrad x‖ ^ 2 ∂volume ≤ (4 * ellipticityRatio A) * ∫ x in Metric.ball x₀ s, ‖fderiv ℝ η x‖ ^ 2 * |positivePartSub u k x| ^ 2 ∂volume := by simpa [mul_assoc, mul_left_comm, mul_comm] using caccioppoli_weighted_on_ball_of_ballPosPart A hs hsub hu hw_trunc hη hη_nonneg hη_bound hCη hη_grad_bound hη_sub_ball have hleft_eq : ∫ x in Metric.ball x₀ r, ‖hw_trunc.weakGrad x‖ ^ 2 ∂volume = ∫ x in Metric.ball x₀ r, η x ^ 2 * ‖hw_trunc.weakGrad x‖ ^ 2 ∂volume := by refine integral_congr_ae ?_ refine (ae_restrict_iff' (μ := volume) measurableSet_ball).2 ?_ filter_upwards with x hx simp [hη_eq_one x hx] have hweighted_nonneg : ∀ x, 0 ≤ η x ^ 2 * ‖hw_trunc.weakGrad x‖ ^ 2 := by intro x positivity have hleft_mono : ∫ x in Metric.ball x₀ r, η x ^ 2 * ‖hw_trunc.weakGrad x‖ ^ 2 ∂volume ≤ ∫ x in Metric.ball x₀ s, η x ^ 2 * ‖hw_trunc.weakGrad x‖ ^ 2 ∂volume := by exact setIntegral_mono_set hweighted_int (ae_of_all _ hweighted_nonneg) (ae_of_all _ (Metric.ball_subset_ball (le_of_lt hrs))) have hgrad_bound : ∫ x in Metric.ball x₀ s, ‖fderiv ℝ η x‖ ^ 2 * |positivePartSub u k x| ^ 2 ∂volume ≤ ∫ x in Metric.ball x₀ s, Cη ^ 2 * |positivePartSub u k x| ^ 2 ∂volume := by refine integral_mono_ae hgrad_term_int (hpos_sq_int.const_mul (Cη ^ 2)) ?_ refine (ae_restrict_iff' (μ := volume) measurableSet_ball).2 ?_ filter_upwards with x hx have hfd_sq_le : ‖fderiv ℝ η x‖ ^ 2 ≤ Cη ^ 2 := by exact sq_le_sq.mpr (by simpa [abs_of_nonneg (norm_nonneg _), abs_of_nonneg hCη] using hη_grad_bound x) have hpos_nonneg : 0 ≤ |positivePartSub u k x| ^ 2 := by positivity exact mul_le_mul_of_nonneg_right hfd_sq_le hpos_nonneg have hcoeff_nonneg : 0 ≤ 4 * ellipticityRatio A := by have hRatio_nonneg : 0 ≤ ellipticityRatio A := A.ellipticityRatio_nonneg nlinarith calc ∫ x in Metric.ball x₀ r, ‖hw_trunc.weakGrad x‖ ^ 2 ∂volume = ∫ x in Metric.ball x₀ r, η x ^ 2 * ‖hw_trunc.weakGrad x‖ ^ 2 ∂volume := hleft_eq _ ≤ ∫ x in Metric.ball x₀ s, η x ^ 2 * ‖hw_trunc.weakGrad x‖ ^ 2 ∂volume := hleft_mono _ ≤ (4 * ellipticityRatio A) * ∫ x in Metric.ball x₀ s, ‖fderiv ℝ η x‖ ^ 2 * |positivePartSub u k x| ^ 2 ∂volume := hweighted _ ≤ (4 * ellipticityRatio A) * ∫ x in Metric.ball x₀ s, Cη ^ 2 * |positivePartSub u k x| ^ 2 ∂volume := by exact mul_le_mul_of_nonneg_left hgrad_bound hcoeff_nonneg _ = 4 * ellipticityRatio A * Cη ^ 2 * ∫ x in Metric.ball x₀ s, |positivePartSub u k x| ^ 2 ∂volume := by rw [integral_const_mul] ring- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/DeGiorgiIteration/Energy.lean:718-833
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
Ae eq of tendsto e Lp Norm sub
BareFunction.ae_eq_of_tendsto_eLpNorm_sub
Plain-language statement
Lp limit uniqueness: if f_n → g₁ and f_n → g₂ in eLpNorm, then g₁ =ᵐ g₂.
Source project: DeGiorgi
Person-level attribution pending.
E Lp Norm pi le sum component
BareFunction.eLpNorm_pi_le_sum_component
Plain-language statement
Vector eLpNorm ≤ sum of component eLpNorms for Pi-valued functions. Uses eLpNorm_mono_real for the pointwise bound together with eLpNorm_sum_le for ℝ-valued functions, avoiding Pi instance synthesis.
Source project: DeGiorgi
Person-level attribution pending.
Mem Lp of tendsto e Lp Norm
BareFunction.memLp_of_tendsto_eLpNorm
Plain-language statement
If f n → g in eLpNorm and each f n ∈ Lp, then g ∈ Lp, provided g is AEStronglyMeasurable. Avoids the Lp type entirely. The key observation: eLpNorm (f n - g) → 0 means eLpNorm (f N - g) < 1 for some N. Then eLpNorm g ≤ eLpNorm (f N - g) + eLpNorm (f N) < ∞.
Source project: DeGiorgi
Person-level attribution pending.