
theorem
  for G1 being _Graph, G2 being LGraphComplement of G1
  for v1 being Vertex of G1, v2 being Vertex of G2
  st v1 = v2 & v1 is isolated
  holds v2.allNeighbors() = the_Vertices_of G2
proof
  let G1 be _Graph, G2 be LGraphComplement of G1;
  let v1 be Vertex of G1, v2 be Vertex of G2;
  assume A1: v1 = v2 & v1 is isolated;
  then v1.allNeighbors() = {} by GLIB_000:113;
  hence v2.allNeighbors() = the_Vertices_of G2 \ {} by A1, Th77
    .= the_Vertices_of G2;
end;
