Skip to content

Instantly share code, notes, and snippets.

@erutuf
Created July 18, 2015 07:50
Show Gist options
  • Save erutuf/4a4a81d2634d537574e8 to your computer and use it in GitHub Desktop.
Save erutuf/4a4a81d2634d537574e8 to your computer and use it in GitHub Desktop.
Require Import ssreflect.
Lemma exo5 : forall A B C : Prop, A /\ B <-> B /\ A.
Proof.
move=> A B P.
split.
case.
move=> a b.
split.
exact b.
exact a.
case.
move=> b a.
split.
exact a.
exact b.
Qed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment