theorem Th45:
  for x being object holds x in Image g iff ex a st x = g.a
proof let x be object;
  thus x in Image g implies ex a st x = g.a
  proof
    assume x in Image g;
    then x in the carrier of Image g;
    then x in g .: (the carrier of G) by Def10;
    then consider y being object such that
    y in dom g and
A1: y in the carrier of G and
A2: g.y = x by FUNCT_1:def 6;
    reconsider y as Element of G by A1;
    take y;
    thus thesis by A2;
  end;
  given a such that
A3: x = g.a;
  the carrier of G = dom g by FUNCT_2:def 1;
  then x in g .: (the carrier of G) by A3,FUNCT_1:def 6;
  then x in the carrier of Image g by Def10;
  hence thesis;
end;
