Zulip Chat Archive

Stream: Is there code for X?

Topic: A `ContinuousOn` version of `Continuous.subtype_mk`


Michael Lee (Jul 29 2023 at 15:26):

I'm looking for a result that's something like

theorem ContinuousOn.subtype_mk (h : ContinuousOn f s) (hp : ∀ x, p (f x)) : ContinuousOn (fun x => (⟨f x, hp x⟩ : Subtype p)) s

Is there anything like this already?

Michael Lee (Jul 29 2023 at 15:52):

Or possibly something like this?

theorem ContinuousOn.subtype_mk (h : ContinuousOn f s) (hp :  x  s, p (f x)) :
  ContinuousOn (fun x (hx : x  s) => (⟨f x, hp x hx : Subtype p)) s

Jireh Loreaux (Jul 29 2023 at 16:11):

I don't think we have it, but you should be able to prove it using docs#ContinuousOn.restrict and docs#continuous_induced_rng


Last updated: Dec 20 2023 at 11:08 UTC