theorem
  for x being Complex holds x |^ 2 = x * x & x^2 = x |^ 2
proof
  let x be Complex;
  thus x * x = (x |^ 1) * x
    .= x |^ (1+1) by Th6
    .= x |^ 2;
  hence thesis;
end;
