Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - feat(Topology/Support): add tsupport_smul_{left,right} #9778

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
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
12 changes: 12 additions & 0 deletions Mathlib/Topology/Support.lean
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,18 @@ theorem mulTSupport_mul [TopologicalSpace X] [Monoid α] {f g : X → α} :
((mulSupport_mul f g).trans (union_subset_union (subset_mulTSupport _) (subset_mulTSupport _)))
(isClosed_closure.union isClosed_closure)

theorem tsupport_smul_left [TopologicalSpace X] [Semiring R] [AddCommMonoid M] [Module R M]
[NoZeroSMulDivisors R M] (f : X → R) (g : X → M) : tsupport (f • g) ⊆ tsupport f := by
grunweg marked this conversation as resolved.
Show resolved Hide resolved
apply closure_mono
erw [support_smul]
exact inter_subset_left _ _

theorem tsupport_smul_right [TopologicalSpace X] [Semiring R] [AddCommMonoid M] [Module R M]
[NoZeroSMulDivisors R M] (f : X → R) (g : X → M) : tsupport (f • g) ⊆ tsupport g := by
grunweg marked this conversation as resolved.
Show resolved Hide resolved
apply closure_mono
erw [support_smul]
exact inter_subset_right _ _

section

variable [TopologicalSpace α] [TopologicalSpace α']
Expand Down