Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions OpenGALib/GeometricMeasureTheory/Varifold.lean
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,11 @@ omit [MeasureTheory.MeasureSpace M] in
theorem massOn_nonneg (V : Varifold M) (U : Set M) : 0 ≤ massOn V U :=
ENNReal.toReal_nonneg

omit [MeasureTheory.MeasureSpace M] in
/-- Localized mass on the empty set is zero. -/
@[simp] theorem massOn_empty (V : Varifold M) : massOn V ∅ = 0 := by
simp [massOn]

omit [MeasureTheory.MeasureSpace M] in
/-- Localized mass is monotone in the set. -/
theorem massOn_mono (V : Varifold M) {U W : Set M} (h : U ⊆ W) :
Expand All @@ -133,6 +138,7 @@ theorem massOn_mono (V : Varifold M) {U W : Set M} (h : U ⊆ W) :

omit [MeasureTheory.MeasureSpace M] in
/-- The total mass equals the localized mass on the whole space. -/
@[simp]
theorem massOn_univ (V : Varifold M) : massOn V Set.univ = mass V := rfl

/-- $p \in \mathrm{spt}\|V\|$ iff every open ball around $p$ has positive
Expand Down
Loading