Caccioppoli weighted on ball of ball Pos Part
DeGiorgi.caccioppoli_weighted_on_ball_of_ballPosPart
Project documentation
Ball-specialized weighted Caccioppoli inequality, using the generalized cutoff admissibility theorem from the previous section.
Exact Lean statement
theorem caccioppoli_weighted_on_ball_of_ballPosPart
{u η : E → ℝ} {x₀ : E} {s Cη k : ℝ}
(A : EllipticCoeff d (Metric.ball x₀ s))
(_hs : 0 < 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η_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₀ 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 ∂volumeFormal artifact
Lean source
theorem caccioppoli_weighted_on_ball_of_ballPosPart {u η : E → ℝ} {x₀ : E} {s Cη k : ℝ} (A : EllipticCoeff d (Metric.ball x₀ s)) (_hs : 0 < 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η_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₀ 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 haveI : IsFiniteMeasure (volume.restrict (Metric.ball x₀ s)) := by rw [isFiniteMeasure_restrict] exact measure_ball_lt_top.ne have hη_comp : HasCompactSupport η := hasCompactSupport_of_tsupport_subset_ball hη_sub_ball have hη_admissible : MemW01p 2 (deGiorgiCutoffTestGeneral η u k) (Metric.ball x₀ s) := deGiorgiCutoffTest_memW01p_of_truncWitness isOpen_ball hw_trunc hη (by norm_num) hCη hη_bound hη_grad_bound hη_comp hη_sub_ball exact caccioppoli_weighted_of_subsolution isOpen_ball A hsub hu hw_trunc hη hη_nonneg (by norm_num) hCη hη_bound hη_grad_bound hη_admissible- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/DeGiorgiIteration/Energy.lean:637-663
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.