Kenneth Roe
2018-08-28 16:00:04 UTC
How can I complete the following two proofs:
Theorem bicond:
forall (x y :Prop), (x <-> y) -> x=y.
Proof.
...
Qed.
And the second proof:
Theorem xverif: (forall q, q+1=3->q+1=4)=False.
Proof.
eapply bicond.
split. intros.
elim H with (q := 0).
generalize H.
intros.
...
Qed.
What gets filled in for the "..." in each of the above proofs?
- Ken
Theorem bicond:
forall (x y :Prop), (x <-> y) -> x=y.
Proof.
...
Qed.
And the second proof:
Theorem xverif: (forall q, q+1=3->q+1=4)=False.
Proof.
eapply bicond.
split. intros.
elim H with (q := 0).
generalize H.
intros.
...
Qed.
What gets filled in for the "..." in each of the above proofs?
- Ken