reserve G for _Graph;
reserve V for non empty set, E for Relation of V;
reserve E for symmetric Relation of V;
reserve G for GraphFromSymRel of V, E;

theorem
  for v being Vertex of G holds v.edgesIn() c= {v}|`E
proof
  let v be Vertex of G;
  set G0 = createGraph(V,E);
  consider E0 being RepEdgeSelection of G0 such that
    A1: G is inducedSubgraph of G0, the_Vertices_of G0, E0 by GLIB_009:def 7;
  A2: the_Edges_of G0 = G0.edgesBetween(the_Vertices_of G0) by GLIB_000:34;
  the_Vertices_of G0 c= the_Vertices_of G0;
  then reconsider v0 = v as Vertex of G0 by A1, A2, GLIB_000:def 37;
  v0.edgesIn() = {v}|`E by Th79;
  hence thesis by GLIB_000:78;
end;
