sequence_props : THEORY %---------------------------------------------------------------------------- % Properties of real sequences % % -> condition for increasing? / decreasing % % -> subsequences % % % Author: Bruno Dutertre Royal Holloway & Bedford New College %---------------------------------------------------------------------------- BEGIN
IMPORTING real_fun_supinf
u, v, w : VAR sequence[real]
i, j : VAR nat
a, x : VAR real
n : VAR nat
%-------------------------------------------------- % Conditions for increasing?/decreasing sequences %--------------------------------------------------
incr_condition : LEMMA increasing?(u) IFFFORALL i : u(i) <= u(i+1)
decr_condition : LEMMA decreasing(u) IFFFORALL i : u(i+1) <= u(i)
strict_incr_condition : LEMMA strict_increasing?(u) IFFFORALL i : u(i) < u(i+1)
strict_decr_condition : LEMMA strict_decreasing(u) IFFFORALL i : u(i+1) < u(i)
%------------------------------------------------------- % Increasing sequences of natural numbers % used for extracting a sub-sequence from a sequence %-------------------------------------------------------
extraction : TYPE = { f : [nat -> nat] | strict_increasing?(f) }
f, g : VAR extraction
extract_incr1 : LEMMA f(i) < f(j) IFF i < j
extract_incr2 : LEMMA i <= j IMPLIES f(i) <= f(j)
extract_incr3 : LEMMA i <= f(i)
unbounded_extract1 : LEMMAEXISTS j : i <= f(j)
unbounded_extract2 : LEMMAEXISTS j : i < f(j)
extract_composition : LEMMA strict_increasing?(g o f)
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.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.