Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Theorem reflect_b_P : forall b:bool,
- exists P:Prop, (b = true -> P) /\ (b = false -> ~P).
- Proof.
- intros b.
- exists (b = true).
- destruct b; split; try firstorder; try congruence.
- Qed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement