Created
January 11, 2015 23:53
-
-
Save mbrcknl/746062c6bb86ff1810f4 to your computer and use it in GitHub Desktop.
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
Lemma list_narrow_ind: | |
forall | |
(X: Type) | |
(P: list X -> Prop) | |
(H: P []) | |
(J: forall x, P [x]) | |
(K: forall x ys z, P ys -> P (x :: ys ++ [z])) | |
(l: list X), | |
P l. | |
Proof. | |
admit. | |
Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment