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

theorem
  a < 0 & 1 < b implies a*b < a
proof
  assume that
A1: a<0 and
A2: b>1;
  a*b<a*1 by A1,A2,Lm24;
  hence thesis;
end;
