Closed AdamBJ closed 9 years ago
Try destruct (eq_id_dec X Y).
That did it! Thanks:)
I prefer
unfold update. simpl. omega.
And I prefer
intro H. inversion H.
To be specific, I use the following often:
apply update_neq; try intro Hx; try inversion Hx.
To solve the proof below I used update_neq:
| V
| V
And here I'm stuck. How can I show that X!=Y?