Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Lemma zad:
  2. forall a: bool,
  3. forall b: bool,
  4. forall c: bool,
  5. forall d: bool,
  6. forall H: a = true -> c = false \/ d = false,
  7. forall H0: a = b,
  8. forall H1: d = false -> c = false,
  9. forall H2: b = true,
  10. c=false.
  11.  
  12. Proof.
  13. intros.
  14. rewrite H2 in H0.
  15. apply H in H0.
  16. decompose [or] H0.
  17. assumption.
  18. apply H1.
  19. assumption.
  20. Qed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement