theorem Th37:
  a < 0 & c <= b implies a+c < b
proof
  assume a < 0 & c <= b;
  then a+c < 0+b by Lm8;
  hence thesis;
end;
