theorem Th1:
  x * y = u & x * z = u implies y = z
proof
  assume x * y = u & x * z = u;
  then x \ (x * y) = x \ (x * z);
  hence thesis;
end;
