Ejemplo de  Inversion (II)
 
 
 

Coq < Inductive Le : nat->nat->Set :=
  LeO : (n:nat)(Le O n) 
| LeS : (n,m:nat) (Le n m)->
                  (Le (S n) (S m)).

Coq < Variable P:nat->nat->Prop.

Coq < Variable Q:(n,m:nat)
                   (Le n m)->Prop.
 
 

 
Por ejemplo, consideremos el objetivo:
 
  n : nat
  m : nat
  H : (Le (S n) m)
  ============================
   (P n m)
 
 

Next