Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] Infinitely often and not finitely often

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] Infinitely often and not finitely often


Chronological Thread 
  • From: Adam Chlipala <adamc AT csail.mit.edu>
  • To: xavier <xavierdpt+coq AT gmail.com>
  • Cc: coq-club AT inria.fr
  • Subject: Re: [Coq-Club] Infinitely often and not finitely often
  • Date: Wed, 14 Nov 2012 07:42:48 -0500

On 11/14/2012 07:15 AM, xavier wrote:
After a few trivial simple steps, I get the following goal:

P : nat -> Prop
dec : forall n : nat, P n \/ ~ P n
n : nat
nft : ~ (forall m : nat, m>= n -> ~ P m)
______________________________________(1/1)
exists m : nat, m> n /\ P m

This looks rather trivial to me. If it is not the case that all m greater than
n do not have the property, then I can find one that has for which it holds.
And yet I'm stuck.

I won't be surprised if your goal still isn't provable without extra axioms. For instance, you'd probably want to use one of the classical-logic corollaries here:
http://coq.inria.fr/distrib/V8.4/stdlib/Coq.Logic.Classical_Pred_Type.html



Archive powered by MHonArc 2.6.18.

Top of Page