Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] forall implication

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] forall implication


Chronological Thread 
  • From: Pierre Courtieu <pierre.courtieu AT gmail.com>
  • To: Coq Club <coq-club AT inria.fr>
  • Subject: Re: [Coq-Club] forall implication
  • Date: Mon, 27 Apr 2015 15:57:08 +0200

Hi,

This is no true and therefore not provable.

But if you add parenthesis over the first quantified part then it is a
different property (and probably the on one you meant?) that is
provable by "intro h; assumption."

(forall x, (* some complex function depending on x*)) -> forall y, (*
the same complex function depending on y*)

For examepl:

Variable A:Type.
Variable P: Type -> Prop.

Goal (forall x, (P x)) -> (forall y, P y).
Proof.
intro h.
assumption.

Best regards,
Pierre


2015-04-27 15:42 GMT+02:00 richard dapoigny
<richard.dapoigny AT univ-savoie.fr>:
> Hi all,
> I try to demonstrate a goal having the form:
> forall x, (* some complex function depending on x*) -> forall y, (* the same
> complex function depending on y*)
> Is there a simple way to do it?
> Thanks in advance,
> Richard



Archive powered by MHonArc 2.6.18.

Top of Page