%------------------------------------------------------------------------------ % connected_set % All type of intervals are connected sets %------------------------------------------------------------------------------
connected_set : THEORY BEGIN
x,y : VAR real
Connected : TYPE =
{s:set[real] | FORALL (a,b:(s)),(c:real): a <= c AND c <= b IMPLIES s(c)}
ConnectedGt(x) : TYPE = {s:Connected | FORALL (z:(s)): z > x}
ConnectedGe(x) : TYPE = {s:Connected | FORALL (z:(s)): z >= x}
ConnectedLt(x) : TYPE = {s:Connected | FORALL (z:(s)): z < x}
ConnectedLe(x) : TYPE = {s:Connected | FORALL (z:(s)): z <= x}
ConnectedGtLt(x,y) : TYPE = {s:Connected | FORALL (z:(s)): x < z AND z < y}
ConnectedGtLe(x,y) : TYPE = {s:Connected | FORALL (z:(s)): x < z AND z <= y}
ConnectedGeLt(x,y) : TYPE = {s:Connected | FORALL (z:(s)): x <= z AND z < y}
ConnectedGeLe(x,y): TYPE = {s:Connected | FORALL (z:(s)): x <= z AND z <= y}
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.