theorem
  for A being Matrix of n,REAL st A is invertible holds Det A <> 0
proof
  let A be Matrix of n,REAL;
  assume A is invertible;
  then A*(Inv A)=1_Rmatrix(n) by Def6;
  then Det (A*(Inv A))=1 by Th72;
  then Det(A)*Det Inv A=1 by Th46;
  hence thesis;
end;
