reserve i1 for Element of INT;
reserve j1,j2,j3 for Integer;
reserve p,s,k,n for Nat;
reserve x,y,xp,yp for set;
reserve G for Group;
reserve a,b for Element of G;
reserve F for FinSequence of G;
reserve I for FinSequence of INT;

theorem Th11:
  for G being strict finite Group st card G > 1
  ex a being Element of G st a <> 1_G
proof
  let G be strict finite Group;
  assume that
A1: card G > 1 and
A2: for a being Element of G holds a = 1_G;
  for a being Element of G holds a in (1).G
  proof
    let a be Element of G;
    a = 1_G by A2;
    then a in {1_G} by TARSKI:def 1;
    hence thesis by GROUP_2:def 7;
  end;
  then the multMagma of G = (1).G by GROUP_2:62;
  hence contradiction by A1,GROUP_2:69;
end;
