Zulip Chat Archive

Stream: Is there code for X?

Topic: Measurability of units multiplication


Yaël Dillies (Feb 25 2023 at 08:06):

Is this true?

import measure_theory.group.arithmetic

variables {α : Type*} [measurable_space α] [monoid α] [has_measurable_mul₂ α]

instance : has_measurable_mul₂ αˣ := sorry

Kevin Buzzard (Feb 25 2023 at 08:57):

Is this your homework? :-)

Yaël Dillies (Feb 25 2023 at 08:59):

I wish it was, but Probability & Measure is a Michaelmas course! I need the above to golf #17570 a bit further.

Sebastien Gouezel (Feb 25 2023 at 09:09):

What measurable structure are you putting on the units? In the topological case, the good topological structure is arguably not the induced topology, but the one that also takes into account the topology for the inverse. One should probably do the same for the measurable structure, and then it's very unlikely that the assumption you have is sufficient for your instance.

Yaël Dillies (Feb 25 2023 at 09:19):

There's docs#units.measurable_space, which is the pullback under αˣ → α × α.


Last updated: Dec 20 2023 at 11:08 UTC