I'd like to prove lt n m -> le n m
since it does not exist in Coq's standard library.
Though in Coq.Init.Peano
, lt m n
is defined as S m <= n
, I cannot unfold lt
in the hypothesis to use such definition.
Why unfold does not work? It seems that only inversion
could work.