Advertisement
tinyevil

Untitled

Feb 20th, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. Inductive wrong_ev (m:nat) : Prop :=
  2. | wrong_ev_0 : wrong_ev 0 -> wrong_ev m
  3. | wrong_ev_SS : forall n, wrong_ev n -> wrong_ev (S (S n)) -> wrong_ev m.
  4.  
  5. Theorem nonsense : forall n (e:wrong_ev n), False.
  6. Proof.
  7. intros n H.
  8. induction H.
  9. apply IHwrong_ev.
  10. apply IHwrong_ev1.
  11. Qed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement