%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Definition and properties of % % convergent sequences of reals % % -> limit of a sequence, % % -> point of accumulation % % -> cauchy criterion % % -> Bolzano-Weierstrass theorem % % -> completeness of the reals % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%--------------------------------- % Limit of convergent sequences %---------------------------------
convergent?(u) : bool = EXISTS l : convergence(u, l)
convergent_seq?(u): MACRO bool = convergent?(u)
v : VAR (convergent?)
limit(v) : real = epsilon(LAMBDA l : convergence(v, l))
limit_lemma : LEMMA convergence(v, limit(v))
limit_def : LEMMA limit(v) = l IFF convergence(v, l)
%-------------------------------------------------------- % A subsequence of a convergent sequence is convergent %--------------------------------------------------------
%------------------------------------------------------------------ % a is a point of accumulation iff a sub-sequence converges to a %------------------------------------------------------------------
%--- extraction ---%
g(u, a)(n) : RECURSIVE nat = IF n = 0 THEN 0 ELSE epsilon! i : g(u, a)(n - 1) < i AND abs(u(i) - a) < 1/n ENDIF MEASURE n
%--- property of g when a is an accumulation point of a ---%
g_prop : LEMMA accumulation(u, a) IMPLIES FORALL n : g(u, a)(n) < g(u, a)(n+1) AND abs(u(g(u, a)(n + 1)) - a) < 1/(n + 1)
g_increasing : COROLLARY
accumulation(u, a) IMPLIES strict_increasing?(g(u, a))
g_convergence : COROLLARY
accumulation(u, a) IMPLIESFORALL n : abs(u(g(u, a)(n + 1)) - a) < 1/(n + 1)
%--- main theorem ---%
accumulation_subsequence : THEOREM
accumulation(u, a) IFFEXISTS u1 : subseq(u1, u) AND convergence(u1, a)
%------------------------------------------------------------- % a point of accumulation of a Cauchy sequence is its limit %-------------------------------------------------------------
cauchy_accumulation : THEOREM
cauchy(u) AND accumulation(u, a) IMPLIES convergence(u, a)
cauchy_subsequence : COROLLARY
cauchy(u) AND subseq(u1, u) AND convergence(u1, l) IMPLIES convergence(u, l)
%---------------------------------------------- % Monotone, bounded sequences are convergent %----------------------------------------------
%-------------------------------------------------- % Bolzano-Weierstrass theorem: % a bounded sequence has a point of accumulation %--------------------------------------------------
%--- bounded sequence ---%
w : VAR { u | bounded_above?(u) AND bounded_below?(u) }
%--- Bolzano/Weirstrass theorem ---%
bolzano_weierstrass1 : COROLLARY EXISTS a : inf(w) <= a AND a <= sup(w) AND accumulation(w, a)
bolzano_weierstrass2 : COROLLARYEXISTS a : accumulation(w, a)
bolzano_weierstrass3 : COROLLARY EXISTS u : subseq(u, w) AND convergent?(u)
bolzano_weierstrass4 : COROLLARY
(FORALL i : a <= u(i) AND u(i) <= b) IMPLIES
(EXISTS c : a <= c AND c <= b AND accumulation(u, c))
%-------------------------------- % A Cauchy sequence is bounded %--------------------------------
prefix_bounded1 : LEMMA EXISTS a : FORALL i : i <= n IMPLIES u(i) <= a
prefix_bounded2 : LEMMA EXISTS a : FORALL i : i <= n IMPLIES a <= u(i)
cauchy_bounded : LEMMA
cauchy(u) IMPLIES bounded_above?(u) AND bounded_below?(u)
%-------------------------------------------------- % Completeness : a Cauchy sequence is convergent %--------------------------------------------------
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.