1

In a proof of one lemma I eventually reached a state, where

I have a premise

H : 0 = 2

and I have to prove

false.

Question: how to infer that the premise H is false to conclude the proof?

mercury0114
  • 1,341
  • 2
  • 15
  • 29

2 Answers2

3

The discriminate tactic can deal with situations like that. I believe that easy also works, as does congruence, which are a bit more general than discriminate.

Arthur Azevedo De Amorim
  • 23,012
  • 3
  • 33
  • 39
0

If you want to understand how it works "behind the scenes", this answer may be useful.

larsr
  • 5,447
  • 19
  • 38