All proofs
Project-declaredLean 4.29.0-rc6 · mathlib@5c8398df5281

Rescale To Unit Ball is Supersolution

DeGiorgi.rescaleToUnitBall_isSupersolution

Plain-language statement

Transport supersolutions on B(x₀, R) to the unit ball via affine pullback.

Exact Lean statement

theorem rescaleToUnitBall_isSupersolution
    {x₀ : E} {R : ℝ} (hR : 0 < R)
    (A : EllipticCoeff d (Metric.ball x₀ R))
    {u : E → ℝ}
    (hsuper : IsSupersolution A u) :
    IsSupersolution (rescaleCoeffToUnitBall (d := d) hR A)
      (rescaleToUnitBall (d := d) (x₀ := x₀) (R := R) u)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem rescaleToUnitBall_isSupersolution    {x₀ : E} {R : } (hR : 0 < R)    (A : EllipticCoeff d (Metric.ball x₀ R))    {u : E  }    (hsuper : IsSupersolution A u) :    IsSupersolution (rescaleCoeffToUnitBall (d := d) hR A)      (rescaleToUnitBall (d := d) (x₀ := x₀) (R := R) u) := by  rcases hsuper with hu_mem, hsuper_ineq  let hu : MemW1pWitness 2 u (Metric.ball x₀ R) := DeGiorgi.MemW1p.someWitness hu_mem  let huR := hu.rescale_to_unitBall (d := d) (x₀ := x₀) (R := R) hR  refine huR.memW1p, ?_  intro hu' φ hφ0 hφ hφ_nonneg  let hφB := hφ.transportFromUnitBall (d := d) (x₀ := x₀) (R := R) hR  have hφB0 :      MemH01 (DeGiorgi.transportFromUnitBall (d := d) (x₀ := x₀) (R := R) φ)        (Metric.ball x₀ R) :=    MemW01p.transportFromUnitBall (d := d) (x₀ := x₀) (R := R) hR hφ0  have hball : 0  bilinFormOfCoeff A hu hφB := by    exact hsuper_ineq hu _ hφB0 hφB (by      intro x      exact hφ_nonneg (R⁻¹ • (x - x₀)))  have hconst_nonneg : 0  ((R ^ Module.finrank  E)⁻¹ * R ^ (2 : ) : ) := by    positivity  calc    0  ((R ^ Module.finrank  E)⁻¹ * R ^ (2 : )) * bilinFormOfCoeff A hu hφB :=      mul_nonneg hconst_nonneg hball    _ = bilinFormOfCoeff (rescaleCoeffToUnitBall (d := d) (x₀ := x₀) (R := R) hR A) huR hφ := by          symm          simpa [huR, hφB] using bilinForm_rescaleToUnitBall (d := d) (x₀ := x₀) (R := R) hR A hu hφ    _ = bilinFormOfCoeff (rescaleCoeffToUnitBall (d := d) (x₀ := x₀) (R := R) hR A) hu' hφ := by          symm          exact bilinFormOfCoeff_eq_left Metric.isOpen_ball _ hu' huR hφ
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/BallScaling.lean:689-720

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

Project-declaredLean 4.29.0-rc6

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₂.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record
Project-declaredLean 4.29.0-rc6

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.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record
Project-declaredLean 4.29.0-rc6

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) < ∞.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record