Zulip Chat Archive
Stream: Is there code for X?
Topic: Distributing Existential Qualification over Disjunction
Sophia C (Jul 16 2024 at 22:09):
I'm working on a proof, and I managed to get to a state where I have (p : ℕ -> Prop)
and (q : ℕ -> Prop)
in scope and ∃ n, p n ∨ q n
Is there a tactic / function I can use to convert this goal into something of the form ∃ n, p n ∨ ∃ n, q n
? Or is that not possible?
Felix Weilacher (Jul 16 2024 at 22:14):
Last updated: May 02 2025 at 03:31 UTC