Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] Non standard natural numbers

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] Non standard natural numbers


Chronological Thread 
  • From: Vincent Semeria <vincent.semeria AT gmail.com>
  • To: coq-club AT inria.fr
  • Subject: Re: [Coq-Club] Non standard natural numbers
  • Date: Wed, 2 Jun 2021 22:14:37 +0200
  • Authentication-results: mail3-smtp-sop.national.inria.fr; spf=None smtp.pra=vincent.semeria AT gmail.com; spf=Pass smtp.mailfrom=vincent.semeria AT gmail.com; spf=None smtp.helo=postmaster AT mail-oi1-f169.google.com
  • Ironport-hdrordr: A9a23:uYe2YaqpOAzgzoz5TTiPahAaV5oSeYIsimQD101hICG9E/bo7vxG+c5w6faaskd1ZJhNo6HjBEDEewK+yXcX2+gs1NWZLW3bUQKTRekI0WKh+V3d8kbFh4lgPMlbAs5D4R7LYWSST/yW3OB1KbkdKRC8npyVuQ==
  • Ironport-phdr: A9a23:GoNQIRVwX7DegFlUaa6TS8jqSJ7V8KwbVTF92vMcY1JmTK2v8tzYMVDF4r011RmVBNSdsaMbwLWL+4nbGkU4qa6bt34DdJEeHzQksu4x2zIaPcieFEfgJ+TrZSFpVO5LVVti4m3peRMNQJW2aFLduGC94iAPERvjKwV1Ov71GonPhMiryuy+4ZLebxhMiTanf79/KBe7oQrTu8QWnIBvNrs/xhzVr3VSZu9Y33loJVWdnxb94se/4ptu+DlOtvwi6sBNT7z0c7w3QrJEAjsmNXs15NDwuhnYUQSP/HocXX4InRdOHgPI8Qv1Xpb1siv9q+p9xCyXNtD4QLwoRTiv6bpgRRn1gykFKjE56nnahcN+jK1ZoByvqR9xzZPKbo6JL/dxZL/RcMkASGZdQspcVSpMCZ68YYsVCOoBOP5VoIb8p1sIsRSxGw+sBP/ywTFVmHD22LM10/4gEQ7cwQctGMwOsHXSrNrpKqgSV/y1wLPTzTrdavNZxy396InSfR06rvGMWKh/ccvVyUU1CwzFiVCQpJXjMjiI2esDr3KV4PB8VeKzlWEnsQdxryCsy8kilITHiZ8Yx03a+Sh43os4Kt+1RU91b9OrEJZdtiGXOoh2T84sXWxkpiU3xqMJtJC1YiUHyIgqyRHeZvGZdYWD/xHtVP6JLDtmmH5ofKizihWy/ES61+HxV8u53ExXoidEltTBsG0G2QbJ5cidUPR9+1+s2TaR2ADX7eFJOUU0mrDaK54l27IwkZsTvVnaEi/4hUn7jaubel8r+uiv7OTnbbHmqYGGO4BojQH+N7wims25AesmLggDR3aX9fi42bH5/kD0QK9GguA3n6TbqpzWOMUWq6qhDw9QyIkj6hK/Dzm80NQfmHkKNExFeBOBj4f1JV7OJuz4Ae2kg1uylTdk2erGPrz7DZjWIXjDla3ufbd560JG1AUzytVf64pOCr4dOPLzRlPxtNvAAxAlNAy02v/rB8l51oMDQm2CGbSZMaPXsV+Q/O0jOeiMZIkPuDb8Mfcp/fDujWVq0WMaKKKuxN4cbG2yNvVgOUSQJ3T20fkbFmJfgAs4R+HslBW5XDtefXe7F/Yi5zcwBYS6S5zOQ423gbWp0yKyH5kQbWdDXAPfWUz0fpmJDq9fIBmZJdVsx2RsvVeJRIoo1BXovwj/meMPxgv8/yQZsdfk1YEw6bSNxFc98jt7C8nb2GaIHTkcdoYgSDo/3aQ5qkt4mA/r7A==

Indeed, so Axiom c_non_standard is out. But the axioms c_gtSSSS...S0 are still in, as Cody confirmed.

On Wed, Jun 2, 2021 at 10:10 PM Evan Marzion <emarzion AT gmail.com> wrote:
By induction, c is greater than n for all n.  Thus, c > c, a contradiction.

On Wed, Jun 2, 2021 at 2:53 PM Vincent Semeria <vincent.semeria AT gmail.com> wrote:
Dear Coq club,

Is it possible to axiomatize a term c : nat, such as c is greater than all standard natural numbers ? The first 2 lines are easy,
Axiom c : nat.
Axiom c_gt0 : 0 < c.

But then, could we consistently add this axiom ?
Axiom c_non_standard : forall n:nat, n < c -> S n < c.

If the last axiom is not consistent, we could modify Coq's type checker to interpret all names of the form c_gtSSSS...S0 as closed terms of the corresponding types SSSS...S0 < c. I am pretty sure that these terms are consistent, because if they introduced a proof of False, that proof would be a finite lambda-term with only a finite number of these c_gt terms. Then c could be replaced by the greatest of these terms, and we would obtain a proof of False in basic Coq.



Archive powered by MHonArc 2.6.19+.

Top of Page