Zulip Chat Archive
Stream: Is there code for X?
Topic: Is there a tactic to expand a forall
Ben (Oct 24 2022 at 15:18):
If I have h1: ∀ (i : G) f i is there a way to expand that out into two hypothesis / props aka i: G and h1: f i?
Yaël Dillies (Oct 24 2022 at 15:19):
How does that make sense? Maybe G is empty!
Ben (Oct 24 2022 at 15:21):
Ah that would be problem I see, what happens if I have non_empty G. I guess I can then use choose to get a G and then get the prop of h1 using h1 my_g
Last updated: May 02 2025 at 03:31 UTC