reserve x,y,z,w for ExtReal,
  r for Real;
reserve f,g for ExtReal;

theorem Th39:
  0 <= z implies x <= x + z
proof
  assume 0 <= z;
  then x + 0 <= x + z by Th36;
  hence thesis by Th4;
end;
