Advertisement
tinyevil

Untitled

Feb 22nd, 2018
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. Theorem reflect_b_P : forall b:bool,
  2. exists P:Prop, (b = true -> P) /\ (b = false -> ~P).
  3. Proof.
  4. intros b.
  5. exists (b = true).
  6. destruct b; split; try firstorder; try congruence.
  7. Qed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement