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(measure_theory/group/measure): Mapping an Haar measure under a linear iso #17771

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 16 additions & 1 deletion src/measure_theory/group/measure.lean
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ noncomputable theory
open_locale ennreal pointwise big_operators topological_space
open has_inv set function measure_theory.measure filter

variables {G : Type*} [measurable_space G]
variables {𝕜 G H : Type*} [measurable_space G] [measurable_space H]

namespace measure_theory
namespace measure
Expand Down Expand Up @@ -716,6 +716,21 @@ example {E : Type*} [normed_add_comm_group E] [normed_space ℝ E] [nontrivial E

end

variables [nontrivially_normed_field 𝕜] [topological_space G] [topological_space H]
[add_comm_group G] [add_comm_group H] [topological_add_group G] [topological_add_group H]
[module 𝕜 G] [module 𝕜 H] (μ : measure G) [is_add_haar_measure μ] [borel_space G] [borel_space H]
[t2_space H]

instance map_continuous_linear_equiv.is_add_haar_measure (e : G ≃L[𝕜] H) :
is_add_haar_measure (μ.map e) :=
e.to_add_equiv.is_add_haar_measure_map _ e.continuous e.symm.continuous

variables [complete_space 𝕜] [t2_space G] [finite_dimensional 𝕜 G] [has_continuous_smul 𝕜 G]
[has_continuous_smul 𝕜 H]

instance map_linear_equiv.is_add_haar_measure (e : G ≃ₗ[𝕜] H) : is_add_haar_measure (μ.map e) :=
map_continuous_linear_equiv.is_add_haar_measure _ e.to_continuous_linear_equiv

end measure
end haar

Expand Down