Moser Reg Test Cutoff mem H01
DeGiorgi.moserRegTestCutoff_memH01
Plain-language statement
The regularized Moser test function belongs to H₀¹(B_s).
Exact Lean statement
theorem moserRegTestCutoff_memH01
{u η : E → ℝ} {s ε N p Cη : ℝ}
(hs : 0 < s) (hs1 : s ≤ 1) (hε : 0 < ε) (hN : 0 ≤ N) (_hp : 1 < p)
(hu1 : MemW1pWitness 2 u (Metric.ball (0 : E) 1))
(hη : ContDiff ℝ (⊤ : ℕ∞) η)
(hη_bound : ∀ x, |η x| ≤ 1)
(hη_grad_bound : ∀ x, ‖fderiv ℝ η x‖ ≤ Cη)
(hη_sub_ball : tsupport η ⊆ Metric.ball (0 : E) s) :
MemH01 (moserRegTestCutoff η u ε N p) (Metric.ball (0 : E) s)Formal artifact
Lean source
theorem moserRegTestCutoff_memH01 {u η : E → ℝ} {s ε N p Cη : ℝ} (hs : 0 < s) (hs1 : s ≤ 1) (hε : 0 < ε) (hN : 0 ≤ N) (_hp : 1 < p) (hu1 : MemW1pWitness 2 u (Metric.ball (0 : E) 1)) (hη : ContDiff ℝ (⊤ : ℕ∞) η) (hη_bound : ∀ x, |η x| ≤ 1) (hη_grad_bound : ∀ x, ‖fderiv ℝ η x‖ ≤ Cη) (hη_sub_ball : tsupport η ⊆ Metric.ball (0 : E) s) : MemH01 (moserRegTestCutoff η u ε N p) (Metric.ball (0 : E) s) := by let hwTest := moserRegTestCutoffWitness (d := d) (p := p) hs hs1 hε hN hu1 hη hη_bound hη_grad_bound have hv_support : tsupport (moserRegTestCutoff η u ε N p) ⊆ Metric.ball (0 : E) s := moserRegTestCutoff_tsupport_subset (d := d) hη_sub_ball have hv_compact : HasCompactSupport (moserRegTestCutoff η u ε N p) := hasCompactSupport_of_tsupport_subset_ball hv_support have hv_memW01p : MemW01p (ENNReal.ofReal (2 : ℝ)) (moserRegTestCutoff η u ε N p) (Metric.ball (0 : E) s) := memW01p_of_memW1p_of_tsupport_subset Metric.isOpen_ball (by norm_num : (1 : ℝ) < 2) (by simpa using hwTest.memW1p) hv_compact hv_support simpa using hv_memW01p- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/MoserIteration/CutoffPrep/RegularizedWitnesses.lean:142-160
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.