%------------------------------------------------------------------------------ % Essentially Bounded functions [T->complex] % % Author: David Lester, Manchester University % % All references are to SK Berberian "Fundamentals of Real Analysis", % Springer, 1991 % % Definition and basic properties of integrals for functions f: [T->complex] % % Version 1.0 11/3/10 Initial Version %------------------------------------------------------------------------------
essentially_bounded[(IMPORTING measure_integration@subset_algebra_def,
measure_integration@measure_def)
T:TYPE, S:sigma_algebra[T], mu:measure_type[T,S]]: THEORY
BEGIN
IMPORTING complex_measure_theory[T,S,mu]
h: VAR [T->complex]
x: VAR T
K: VAR nnreal
c: VAR complex
essentially_bounded?(h):bool = complex_measurable?(h) AND ae_bounded?(h)