Skip to Content.
Sympa Menu

coq-club - [Coq-Club]Semi-constructive infinite pigeon hole problem.

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club]Semi-constructive infinite pigeon hole problem.


chronological Thread 
  • From: roconnor AT theorem.ca
  • To: Coq Club <coq-club AT pauillac.inria.fr>
  • Subject: [Coq-Club]Semi-constructive infinite pigeon hole problem.
  • Date: Sat, 4 Nov 2006 08:43:12 -0500 (EST)
  • List-archive: <http://pauillac.inria.fr/pipermail/coq-club/>

It is well-known that one cannot prove the infinite pigeon hole principle constructively, but consider the following:

Definition classicOr A B := ~(~A/\~B).

Section Pigeon.

Variable P : nat -> Prop.
Variable Q : nat -> Prop.
Hypothesis P1 : forall n m, n <= m -> P m -> P n.
Hypothesis Q1 : forall n m, n <= m -> Q m -> Q n.
Hypothesis PQ : forall n, {P n}+{Q n}.

Theorem InfinitePigeonHole : classicOr (forall n, P n) (forall n, Q n).

Is it possible to constructively prove the above theorem? I haven't been able to figure out a proof. Also, because the conclusion of the above theorem is False, I cannot see how to create a Browerian counter-example either.

--
Russell O'Connor                                      <http://r6.ca/>
``All talk about `theft,''' the general counsel of the American Graphophone
Company wrote, ``is the merest claptrap, for there exists no property in
ideas musical, literary or artistic, except as defined by statute.''





Archive powered by MhonArc 2.6.16.

Top of Page