Zulip Chat Archive

Stream: new members

Topic: How do I translate an infinite set in a subtype?


Ching-Tsun Chou (Jul 30 2025 at 01:24):

Alas, I couldn't figure out how to prove the following painfully obvious proposition. Any ideas?

import Mathlib
example {X Y : Type} (f : X  Y) (s : Set X) (y : Y)
    (h : {x' : {x // x  s} | f (x') = y}.Infinite) : {x | x  s  f x = y}.Infinite := by sorry

Aaron Liu (Jul 30 2025 at 01:30):

docs#Equiv.subtypeSubtypeEquivSubtypeInter

Ching-Tsun Chou (Jul 30 2025 at 04:49):

Thanks a lot!


Last updated: Dec 20 2025 at 21:32 UTC