Coq: how to apply one hypothesis to another
问题 Assume I have two hypotheses in the context, a_b : A -> B and a : A . I should be able to apply a_b to a to gain a further hypothesis, b : B . That is, given the following state: 1 subgoal A : Prop B : Prop C : Prop a_b : A -> B a : A ______________________________________(1/1) C There should be some tactic, foo (a_b a) , to transform this into the following state: 1 subgoal A : Prop B : Prop C : Prop a_b : A -> B a : A b : B ______________________________________(1/1) C But I don't know what