cont_if_fun[ T : TYPEFROM real] : THEORY %------------------------------------------------------------------------------------ % % Continuity of a function defined using an IF-THEN-ELSE % % G = IF <expr> THEN f1 ELSE f2 ENDIF % % is continuous if f1 and f2 are continuous and they are equal at all of the % place where the <expr> is discontinuous. % % Author: Rick Butler NASA Langley % Jan 22, 2009 %-------------------------------------------------------------------------------------- BEGIN
ASSUMING
connected_domain : ASSUMPTION FORALL (x, y : T), (z : real) :
x <= z AND z <= y IMPLIES T_pred(z)
ENDASSUMING
IMPORTING continuous_functions[T]
f,f1,f2 : VAR [T -> real]
P : VAR [T -> bool]
a, b, c, d, x : VAR T
discont_pts(P): set[T] = {x:T | NOT continuous_at?(P,x)}
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 und die Messung sind noch experimentell.