Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Lemma counterexample :
  2. ~ forall (A : Type) (P : A -> Prop) (Q : Prop), ((forall x, P x) -> Q) -> (exists x, P x -> Q).
  3. Proof.
  4. intros contra.
  5. specialize (contra Empty_set (fun _ => False) True (fun _ => I)) as [x _].
  6. contradiction.
  7. Qed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement