Skip to content

Instantly share code, notes, and snippets.

@yoshihiro503
Created February 18, 2018 11:24
Show Gist options
  • Save yoshihiro503/b611627c4459c6d1d72ee1b3150abf4d to your computer and use it in GitHub Desktop.
Save yoshihiro503/b611627c4459c6d1d72ee1b3150abf4d to your computer and use it in GitHub Desktop.
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