Created
February 18, 2018 11:24
-
-
Save yoshihiro503/b611627c4459c6d1d72ee1b3150abf4d 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
Require Import Arith List. | |
Import ListNotations. | |
Lemma list_Forall_map : forall (A B: Type) (P : B -> Prop) (f: A -> B) xs, | |
Forall P (map f xs) <-> Forall (fun x => P (f x)) xs. | |
Proof. | |
Admitted. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment