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

theorem Th69:
  createGraph(V,E) is complete implies E is connected
proof
  assume createGraph(V,E) is complete;
  then VertexDomRel(createGraph(V,E)) is connected;
  hence thesis;
end;
