let G be loopless _Graph; :: thesis: for v being Vertex of G holds
( v .inNeighbors() c= (the_Vertices_of G) \ {v} & v .outNeighbors() c= (the_Vertices_of G) \ {v} & v .allNeighbors() c= (the_Vertices_of G) \ {v} )

let v be Vertex of G; :: thesis: ( v .inNeighbors() c= (the_Vertices_of G) \ {v} & v .outNeighbors() c= (the_Vertices_of G) \ {v} & v .allNeighbors() c= (the_Vertices_of G) \ {v} )
now :: thesis: for x being object st x in v .inNeighbors() holds
x in (the_Vertices_of G) \ {v}
end;
hence v .inNeighbors() c= (the_Vertices_of G) \ {v} ; :: thesis: ( v .outNeighbors() c= (the_Vertices_of G) \ {v} & v .allNeighbors() c= (the_Vertices_of G) \ {v} )
now :: thesis: for x being object st x in v .outNeighbors() holds
x in (the_Vertices_of G) \ {v}
end;
hence v .outNeighbors() c= (the_Vertices_of G) \ {v} ; :: thesis: v .allNeighbors() c= (the_Vertices_of G) \ {v}
now :: thesis: for x being object st x in v .allNeighbors() holds
x in (the_Vertices_of G) \ {v}
end;
hence v .allNeighbors() c= (the_Vertices_of G) \ {v} ; :: thesis: verum