reserve x for set;
reserve a,b,c,d for ExtReal;

theorem
  a < b & b < c implies b in REAL
proof
  assume
A1: a < b & b < c;
  b in REAL or b = +infty or b = -infty by Lm10;
  hence thesis by A1,Lm8,Lm9;
end;
