Created
May 21, 2016 08:07
-
-
Save yoshihiro503/7cc2a40211a9700b52ba001bac126c72 to your computer and use it in GitHub Desktop.
練習問題: ★★★★, optional (true_upto_n__true_everywhere)
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
Fixpoint true_upto_n__true_everywhere | |
(* FILL IN HERE *) | |
Example true_upto_n_example : | |
(true_upto_n__true_everywhere 3 (fun n => even n)) | |
= (even 3 -> even 2 -> even 1 -> forall m : nat, even m). | |
Proof. reflexivity. Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment