Zulip Chat Archive

Stream: maths

Topic: Definition of Absorbs


Yury G. Kudryashov (Dec 06 2023 at 17:23):

What do you think about redefining docs#Absorbs as below? It is equivalent to the existing definition for an action of a (semi)normed ring on a module but doesn't need norm, metric etc.

def Absorbs (M : Type*) {α : Type*} [Bornology M] [SMul M α] (A B : Set α) : Prop :=
  ∀ᶠ a in cobounded M, B  a  A

Yury G. Kudryashov (Dec 06 2023 at 17:25):

@Jean Lo, you wrote the current definition in !3#4827, what do you think about :up:?

Yury G. Kudryashov (Dec 06 2023 at 17:26):

@Bhavik Mehta and @Yaël Dillies you're also mentioned as the authors of file#Mathlib/Analysis/LocallyConvex/Basic
what do you think about :up:?

Jireh Loreaux (Dec 06 2023 at 17:37):

Makes sense to me, but I know you didn't ask me :wink:

Yury G. Kudryashov (Dec 06 2023 at 17:38):

I tagged the authors of that file...

Yaël Dillies (Dec 06 2023 at 18:05):

I think that's much slicker than the current definition. And you get to move it out of that file (I would personally move it to Topology.Bornology.Pointwise). I'm sold.

Yury G. Kudryashov (Dec 06 2023 at 18:05):

I'm moving it to Topology.Bornology.Absorbs

Yury G. Kudryashov (Dec 06 2023 at 18:07):

And I'm going to add typeclasses for properties like -(cobounded X) = cobounded X and (cobounded G)⁻¹ = 𝓝[≠] 0

Yury G. Kudryashov (Dec 06 2023 at 18:07):

/me is away for a few hours

Yaël Dillies (Dec 06 2023 at 18:08):

If you're going to do that, then I'd suggest putting it all in a single file Topology.Bornology.Pointwise.

Patrick Massot (Dec 06 2023 at 18:58):

We should also asks @Anatole Dedecker.

Yury G. Kudryashov (Dec 06 2023 at 20:21):

Yaël Dillies said:

If you're going to do that, then I'd suggest putting it all in a single file Topology.Bornology.Pointwise.

Some of these definitions need topology, some don't. I was going to put them into different files.

Yaël Dillies (Dec 06 2023 at 20:25):

Hmm... good point. I'll wait to see the PRs to complain. :stuck_out_tongue:

Yury G. Kudryashov (Dec 06 2023 at 20:51):

#8856 is a dependency


Last updated: Dec 20 2023 at 11:08 UTC