Library hw03_classic_tautologies
Require Import Classical_Prop.
Lemma ImplToDisjClassic: forall a b: Prop, (a -> b) -> (~a \/ b).
Proof.
Admitted.
Lemma PeirceLaw: forall a b: Prop, ((a -> b) -> a) -> a.
Proof.
Admitted.
Lemma NNPPUsingClassic:
forall a: Prop, ~~a -> a.
Proof.
Admitted.