is there a `eapply`-like tactic that works on `exists` goals in Coq?
问题 I have the following during a proof where the goal is an existential, and the target property is one of the assumptions. H : x ==> y ... ______________________________________(1/2) exists t : tm, x ==> t I know I can do exists y. apply H. to prove the current goal, but I am wondering if there is a more intelligent tactic that can use the assumption directly to prove the existential goal here, like eapply H ? Since this is one unification away, it would be nice not having to write the X part