 reserve m,n for Nat;
 reserve i,j for Integer;
 reserve S for non empty multMagma;
 reserve r,r1,r2,s,s1,s2,t for Element of S;
 reserve G for Group-like non empty multMagma;
 reserve e,h for Element of G;
 reserve G for Group;
 reserve f,g,h for Element of G;
 reserve u for UnOp of G;

theorem
  h |^ 2 = 1_G iff h" = h
proof
  thus h |^ 2 = 1_G implies h = h"
  proof
    assume h |^ 2 = 1_G;
    then h * h = 1_G by Th26;
    hence thesis by Th11;
  end;
  assume h = h";
  hence h |^ 2 = h * h" by Th26
    .= 1_G by Def5;
end;
