Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit fc4e471

Browse files
fpvandoornurkud
andcommitted
feat(measure_theory/group/basic): make is_[add|mul]_[left|right]_invariant classes (#11655)
* Simplify the definitions of these classes * Generalize many results about topological groups to measurable groups (still to do in `group/prod`) * Simplify some proofs * Make function argument of `integral_mul_[left|right]_eq_self` explicit (otherwise it is hard to apply this lemma in case the function is not a variable) Co-authored-by: Yury G. Kudryashov <urkud@urkud.name>
1 parent 44105f8 commit fc4e471

File tree

6 files changed

+268
-315
lines changed

6 files changed

+268
-315
lines changed

src/analysis/fourier.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ instance : measurable_space circle := borel circle
6767
instance : borel_space circle := ⟨rfl⟩
6868

6969
/-- Haar measure on the circle, normalized to have total measure 1. -/
70+
@[derive is_haar_measure]
7071
def haar_circle : measure circle := haar_measure positive_compacts_univ
7172

7273
instance : is_probability_measure haar_circle := ⟨haar_measure_self⟩
@@ -205,8 +206,7 @@ begin
205206
have hij : -i + j ≠ 0,
206207
{ rw add_comm,
207208
exact sub_ne_zero.mpr (ne.symm h) },
208-
exact integral_zero_of_mul_left_eq_neg (is_mul_left_invariant_haar_measure _)
209-
(fourier_add_half_inv_index hij)
209+
exact integral_zero_of_mul_left_eq_neg (fourier_add_half_inv_index hij)
210210
end
211211

212212
end monomials

0 commit comments

Comments
 (0)