reserve x,y,X,Y for set;
reserve C for non empty set;
reserve c for Element of C;
reserve f,f1,f2,f3,g,g1 for PartFunc of C,COMPLEX;
reserve r1,r2,p1 for Real;
reserve r,q,cr1,cr2 for Complex;

theorem
  f1|X is bounded & f2|Y is constant implies (f1-f2)|(X /\ Y) is bounded
  & (f2-f1)|(X /\ Y) is bounded & (f1(#)f2)|(X /\ Y) is bounded
proof
  assume that
A1: f1|X is bounded and
A2: f2|Y is constant;
  (-f2)|Y is constant by A2,Th79;
  hence (f1-f2)|(X /\ Y) is bounded by A1,Th82;
A3: f2|Y is bounded by A2,Th80;
  hence (f2-f1)|(X /\ Y) is bounded by A1,Th75;
  thus thesis by A1,A3,Th75;
end;
