let G2 be _Graph; :: thesis: for V being set
for G1 being addVertices of G2,V holds G1 .edgesBetween (the_Vertices_of G2) = the_Edges_of G1

let V be set ; :: thesis: for G1 being addVertices of G2,V holds G1 .edgesBetween (the_Vertices_of G2) = the_Edges_of G1
let G1 be addVertices of G2,V; :: thesis: G1 .edgesBetween (the_Vertices_of G2) = the_Edges_of G1
set E1 = the_Edges_of G1;
set V2 = the_Vertices_of G2;
for e being object holds
( e in the_Edges_of G1 iff e in (G1 .edgesInto (the_Vertices_of G2)) /\ (G1 .edgesOutOf (the_Vertices_of G2)) )
proof end;
then the_Edges_of G1 = (G1 .edgesInto (the_Vertices_of G2)) /\ (G1 .edgesOutOf (the_Vertices_of G2)) by TARSKI:2;
hence G1 .edgesBetween (the_Vertices_of G2) = the_Edges_of G1 by GLIB_000:def 29; :: thesis: verum