Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Non decreasing natural number sequence convergence

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Non decreasing natural number sequence convergence


Chronological Thread 
  • From: Saulo Araujo <saulo2 AT gmail.com>
  • To: coq-club AT inria.fr
  • Subject: [Coq-Club] Non decreasing natural number sequence convergence
  • Date: Fri, 13 Feb 2015 09:58:45 -0300

Hi,

Does the Coq standard library or any public available library has the proof for the theorem below (or one similar)? It basically says that non decreasing natural number sequences are convergent.

Theorem convergence_t1 :
  forall (f : nat -> nat),
    (forall n, f (S n) >= f n /\ exists l, forall n, f n <= l) ->
    exists N L, forall n, n >= N -> f n = L.

Thanks,
Saulo



Archive powered by MHonArc 2.6.18.

Top of Page