I have hit the wall with a proof (Coq version 8.13.1 , using infotheo), where the context Hypothesis is as the goal, just with a "%B" attached. I understand it indicates 'is_true', but how to proceed the proof?
(unfold is_true does not get rid of "%B", rewrite H and apply H does not work).
A: finType
B: eqType
i: B
i0: A
X: A -> B
H: (X i0 == i)%B
===
(1/1)
X i0 = i
Any advice appreciated.
by apply/eqP
work for you? – Anton Trunov