Zulip Chat Archive
Stream: new members
Topic: exists.elim multiple
Bjørn Kjos-Hanssen (Jan 27 2022 at 18:26):
have h: ∃ x y z : ℕ, x+y=z,
exists.elim h ( ...)
Is there a way to discharge all the variables x y z
at once instead of using three nested exists.elim
's?
Patrick Johnson (Jan 27 2022 at 18:31):
In tactic mode you can use docs#tactic.rcases
rcases h with ⟨x, y, z, h⟩
Last updated: Dec 20 2023 at 11:08 UTC