sigma_countable[T:TYPE]: THEORY %------------------------------------------------------------------------------ % The sigma_set theory introduces and defines properties of the sigma % function that sums an arbitrary function F: [T -> real] over a countable % set of values X. To make this sensible for infinite sets, we will also % require that f is absolutely convergent in the infinite case. % % This notation is a vital simplification for discrete probability theory. % % ---- % sigma(X, f) = \ f(x) % / % ---- % member(x,X) % % % MODIFICATIONS: % % Author: David Lester, Manchester University 20/4/05 % % Additions 20/1/10 DR Lester % %------------------------------------------------------------------------------
a: VAR real
X,Y: VAR countable_set
t: VAR T
f,g: VAR [T -> real]
F: VAR non_empty_finite_set[T]
n: VAR nat
phi: VAR (bijective?[nat,nat])
npx: VAR npreal
nnx: VAR nnreal
sigma(X:countable_set[T],f:(convergent?(X))):real
= IF empty?(X) THEN 0 ELSIF is_finite(X) THEN sigma[below[card(X)]](0,card(X)-1,f o finite_enumeration(X)) ELSE limit(series(f o denumerable_enumeration(X))) ENDIF
sigma_empty: LEMMA sigma(emptyset[T],g) = 0
sigma_finite: LEMMALET n = card(F)-1 IN
sigma(F,g) = sigma[below[n+1]](0,n,g o finite_enumeration(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.