I am working through a proof in which there is a hypothesis
H : exists a b v, P a b v
If I use inversion H
, then I recover
a : nat
H1 : exists b v, P a b v.
which is fine, but then I need to use inversion twice more to recover b and v. Is there a single command to recover a, b, v all at once?