Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] assumption after split

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] assumption after split


chronological Thread 
  • From: Edsko de Vries <devriese AT cs.tcd.ie>
  • To: Marko Malikovi? <marko AT ffri.hr>
  • Cc: coq-club AT pauillac.inria.fr
  • Subject: Re: [Coq-Club] assumption after split
  • Date: Mon, 7 May 2007 12:53:22 +0100
  • List-archive: <http://pauillac.inria.fr/pipermail/coq-club/>

On Mon, May 07, 2007 at 01:47:16PM +0200, Marko Malikovi? wrote:
> Greetings for everybody,
> 
> I'm new in Coq. Please, can somebody explain to me this error:
> 
> Coq < Section Proba.
> 
> Coq < Variable A B:Prop.
> A is assumed
> B is assumed
> 
> Coq < Hypothesis H:A.
> H is assumed
> 
> Coq < Goal A /\ B.
> 1 subgoal
> 
>   A : Prop
>   B : Prop
>   H : A
>   ============================
>    A /\ B
> 
> Unnamed_thm < split;assumption.
> Toplevel input, characters 6-16
> > split;assumption.
> >       ^^^^^^^^^^
> User error: No such assumption
> 
> Thank you very much,

After split, you need to prove A and B, but only A is an assumption (B is 
not).

If you add another hypothesis H':B, it should work.

Edsko





Archive powered by MhonArc 2.6.16.

Top of Page