Aestrongly Measurable bilin Form Integrand Of Coeff
DeGiorgi.aestronglyMeasurable_bilinFormIntegrandOfCoeff
Plain-language statement
The bilinear-form integrand is a.e. strongly measurable on Ω.
Exact Lean statement
theorem aestronglyMeasurable_bilinFormIntegrandOfCoeff
{Ω : Set E} {u v : E → ℝ}
(A : EllipticCoeff d Ω)
(hu : MemW1pWitness 2 u Ω) (hv : MemW1pWitness 2 v Ω) :
AEStronglyMeasurable (bilinFormIntegrandOfCoeff A hu hv) (volume.restrict Ω)Formal artifact
Lean source
theorem aestronglyMeasurable_bilinFormIntegrandOfCoeff {Ω : Set E} {u v : E → ℝ} (A : EllipticCoeff d Ω) (hu : MemW1pWitness 2 u Ω) (hv : MemW1pWitness 2 v Ω) : AEStronglyMeasurable (bilinFormIntegrandOfCoeff A hu hv) (volume.restrict Ω) := by have hF_aemeas : AEMeasurable (fun x => ∑ i : Fin d, (∑ j : Fin d, A.a x i j * hu.weakGrad x j) * hv.weakGrad x i) (volume.restrict Ω) := by have hsum : AEMeasurable (∑ i : Fin d, fun x => (∑ j : Fin d, A.a x i j * hu.weakGrad x j) * hv.weakGrad x i) (volume.restrict Ω) := by refine Finset.aemeasurable_sum (s := (Finset.univ : Finset (Fin d))) (f := fun i x => (∑ j : Fin d, A.a x i j * hu.weakGrad x j) * hv.weakGrad x i) ?_ intro i _ have hrow : AEMeasurable (fun x => ∑ j : Fin d, A.a x i j * hu.weakGrad x j) (volume.restrict Ω) := by have hrow_sum : AEMeasurable (∑ j : Fin d, fun x => A.a x i j * hu.weakGrad x j) (volume.restrict Ω) := by refine Finset.aemeasurable_sum (s := (Finset.univ : Finset (Fin d))) (f := fun j x => A.a x i j * hu.weakGrad x j) ?_ intro j _ exact (A.measurable_apply i j).aemeasurable.mul (hu.weakGrad_component_memLp j).aemeasurable convert hrow_sum using 1 ext x simp exact hrow.mul (hv.weakGrad_component_memLp i).aemeasurable convert hsum using 1 ext x simp have hscalar : ∀ a b : ℝ, ⟪a, b⟫_ℝ = a * b := by intro a b simpa using (RCLike.inner_apply' a b) refine hF_aemeas.aestronglyMeasurable.congr ?_ filter_upwards with x simp [bilinFormIntegrandOfCoeff, PiLp.inner_apply, matMulE_apply, Matrix.mulVec, dotProduct, hscalar]- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/WeakFormulation/BilinearForm.lean:37-77
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.