Zulip Chat Archive

Stream: maths

Topic: filter subtype lift


Bernd Losert (Nov 30 2021 at 12:45):

Say I have a filter F : filter (subtype s) where s : set α. I want to "lift" F to a filter α. What is the correct way to do this? I've been hacking it with coe but it does not work sometimes.

Johan Commelin (Nov 30 2021 at 12:47):

@Bernd Losert Is that F.map coe?

Johan Commelin (Nov 30 2021 at 12:48):

You can map a filter on α to a filter on β along any function f : α → β

Bernd Losert (Nov 30 2021 at 12:54):

Yes, I've been doing map coe F, but there are situations where it gets confused because it can't figure out which β to use.

Heather Macbeth (Nov 30 2021 at 13:07):

You can be more explicit with (coe : s → β)

Bernd Losert (Nov 30 2021 at 13:09):

Nice. That cleared the problem. Thank you.


Last updated: Dec 20 2023 at 11:08 UTC