theorem
  for x being Point of X holds f is_continuous_at x & g is continuous
  implies g*f is_continuous_at x
proof
  let x be Point of X;
  assume
A1: f is_continuous_at x;
  assume g is continuous;
  then g is_continuous_at (f.x);
  hence thesis by A1,Th47;
end;
