reserve a,b,c,d for Real;
reserve r,s for Real;

theorem
  0 <= a & a < b implies a/b < 1
proof
  assume
A1: 0 <= a & a < b;
  then a/b < b/b by Lm26;
  hence thesis by A1,XCMPLX_1:60;
end;
