Zulip Chat Archive

Stream: Is there code for X?

Topic: Filter.map (fun x ↦ c * x)


Joris van Winden (Jan 26 2026 at 16:34):

Is there an easy way to prove Filter.map (fun x ↦ c * x : ℝ≥0 → ℝ≥0) atTop = atTop? (using 0 < c of course)

I noticed mathlib has Filter.map_add_atTop_eq_nat, but this only works for addition.

Yury G. Kudryashov (Jan 26 2026 at 16:40):

You can use docs#Filter.map_atTop_eq_of_gc

Yury G. Kudryashov (Jan 26 2026 at 16:40):

Or docs#OrderIso.map_atTop

Joris van Winden (Jan 27 2026 at 07:18):

Yury G. Kudryashov said:

You can use docs#Filter.map_atTop_eq_of_gc

Thanks! I got Filter.map_atTop_eq_of_gc_preorder to work in the end


Last updated: Feb 28 2026 at 14:05 UTC