Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club]and_rec

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club]and_rec


chronological Thread 
  • From: Edsko de Vries <devriese AT cs.tcd.ie>
  • To: jean-francois.monin AT imag.fr
  • Cc: coq-club AT pauillac.inria.fr
  • Subject: Re: [Coq-Club]and_rec
  • Date: Tue, 6 Mar 2007 14:06:52 +0000
  • List-archive: <http://pauillac.inria.fr/pipermail/coq-club/>

On Tue, Mar 06, 2007 at 02:51:52PM +0100, 
jean-francois.monin AT imag.fr
 wrote:
> Hi,
> 
> I did'nt read the complicated part, but at least:
> > I would think if if I have a proof of type A /\ B, I must be able to
> > show that the structure of that proof must be conj _ _; and hence, I
> > should be able to simplify my and_rec, above. But I don't seem to be
> > able to prove the following lemma:
> > 
> > Lemma and_conj : forall (A B:Prop) (pf : A /\ B), 
> >   exists pa : A, exists pb : B, pf = conj pa pb.
> 
> intros. case pf. intros a b.
> exists a. exists b.
> reflexivity.
> Qed.

Aaargh. Okay. That was easy :) Thanks! I had tried both (elim pf) and
(inversion pf), but neither worked; I hadn't tried (case pf). I don't
really understand why (case pf) works, but the other two don't. I guess
it's back to Coq'Art for me :)

Thanks!

Edsko





Archive powered by MhonArc 2.6.16.

Top of Page