theorem ::SqrtLt:
  0 <= x & 0 <= y & x < y^2 implies sqrt x < y
  proof
    assume A1: 0 <= x & 0 <= y & x < y^2; then
    sqrt x < sqrt y^2 by SQUARE_1:27;
    hence thesis by A1,SQUARE_1:22;
  end;
