Created
February 23, 2013 07:31
-
-
Save yoshihiro503/5018836 to your computer and use it in GitHub Desktop.
「ソフトウェアの基礎」 Rel_Jの練習問題 le_Sn_n の形式的な証明 http://proofcafe.org/sf/Rel_J.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(** **** 練習問題:★, optional *) | |
Theorem le_Sn_n : forall n, | |
~ (S n <= n). | |
Proof. | |
intro n. intro H. induction n. | |
inversion H. | |
apply IHn. apply le_S_n. apply H. | |
Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment