reserve a,b,c,x,y,z for Real;

theorem
  for x being Complex st x^2=1 holds x=1 or x=-1
proof
  let x be Complex;
  assume x^2=1;
  then (x-1)*(x+1)=0;
  then x-1=0 or x+1=0;
  hence thesis;
end;
