Samplinglib
Lean gate not recorded for this source state main · 0e31a3cda412
ASTIS mathematical exposition

The closed support lies in the same outer closed ball

AutoSamplingTheory.TechnicalLemmas.Analysis.Calculus.Cutoff.radialSmoothCutoff_tsupport_subset_closedBall · theorem · Teaching coverage

Statement

Let E be a normed additive commutative group and R>0. The topological support of χ_R, defined as the closure of its nonzero set, is contained in the closed ball about zero of radius 2R.

\[\operatorname{tsupp}\chi_R:=\overline{\{x:\chi_R(x)\ne0\}}\subseteq\overline B(0,2R).\]

All objects and hypotheses

  • E is a normed additive commutative group.
  • R∈ℝ with R>0.
  • Topological support is the closure of ordinary support.

Mathematical proof

1. Take closure inside the closed containing ball

The preceding theorem places the ordinary support inside the outer closed ball. Because that ball is closed, it also contains the closure of the support.

\[\operatorname{supp}\chi_R\subseteq\overline B(0,2R),\quad\overline B(0,2R)\text{ closed}\quad\Longrightarrow\quad\overline{\operatorname{supp}\chi_R}\subseteq\overline B(0,2R).\]
Corresponding Lean step

closure_minimal (radialSmoothCutoff_support_subset_closedBall hR) Metric.isClosed_closedBall

Lean statement · radialSmoothCutoff_tsupport_subset_closedBall

This is a short topological wrapper around the ordinary-support inclusion. It is useful for compact-support arguments, which concern the closed support. The source's surrounding Radial section contributes the implicit type E and its NormedAddCommGroup instance; further structures appear explicitly in the declaration.

Braces mark parameters Lean can infer; square brackets request structures such as a measurable space or probability measure. Named hypotheses are mathematical premises, not facts established by this declaration. Section parameters are described in the mathematical hypotheses above; the module link retains their exact source context.

theorem radialSmoothCutoff_tsupport_subset_closedBall {R : ℝ} (hR : 0 < R) :
    tsupport (radialSmoothCutoff R : E → ℝ) ⊆
      Metric.closedBall 0 (2 * R)

Exact module and namespace context

Lean proof · radialSmoothCutoff_tsupport_subset_closedBall

Actual proof outline: Take closure inside the closed containing ball: `closure_minimal` is the topological fact that the closure is contained in every closed superset. The apparent change from support to tsupport is exactly this closure operation.

Braces mark parameters Lean can infer; square brackets request structures such as a measurable space or probability measure. Named hypotheses are mathematical premises, not facts established by this declaration. Section parameters are described in the mathematical hypotheses above; the module link retains their exact source context.

theorem radialSmoothCutoff_tsupport_subset_closedBall {R : ℝ} (hR : 0 < R) :
    tsupport (radialSmoothCutoff R : E → ℝ) ⊆
      Metric.closedBall 0 (2 * R) := by
  exact closure_minimal
    (radialSmoothCutoff_support_subset_closedBall hR) Metric.isClosed_closedBall

/-- In finite dimension, a positive-scale radial cutoff has compact support. -/

Exact module and namespace context

Scope and omitted-condition boundaries

  • Containment in a bounded closed ball is not yet compactness in infinite dimension.

Source and reuse

ASTIS parents called

Mathlib API called (external library)

  • closure_minimal
  • Metric.isClosed_closedBall

Mathematical sources

ASTIS prose is not a quotation or a source-equivalence certificate. Definitions and aliases are explained as constructions, not counted as new mathematical proofs.