let G be _Graph; :: thesis: for v being Vertex of G holds
( v is isolated iff v .allNeighbors() = {} )

let v be Vertex of G; :: thesis: ( v is isolated iff v .allNeighbors() = {} )
hereby :: thesis: ( v .allNeighbors() = {} implies v is isolated ) end;
assume A1: v .allNeighbors() = {} ; :: thesis: v is isolated
assume not v is isolated ; :: thesis: contradiction
then A2: v .edgesInOut() <> {} ;
set e = the Element of v .edgesInOut() ;
consider v0 being Vertex of G such that
A3: the Element of v .edgesInOut() Joins v,v0,G by A2, Th64;
thus contradiction by A1, A3, Th71; :: thesis: verum