During a proof, I encountered an hypothesis H
. I have lemmas: H -> A
and H -> B
.
How can I duplicate H
in order to deduce two hypotheses A
and B
?
edited: More precisely, I have:
lemma l1: X -> A.
lemma l2: X -> B.
1 subgoals, subgoal 1 (ID: 42)
H: X
=========
Y
But, I want to get:
1 subgoals, subgoal 1 (ID: 42)
H1: A
H2: B
=========
Y
apply lemma1 in H
H indeed gets unavailable and is replaced by A. – Fissionable